Struct polars_utils::sync::SyncPtr
source · pub struct SyncPtr<T>(/* private fields */);
Expand description
Utility that allows use to send pointers to another thread.
This is better than going through usize
as MIRI can follow these.
Implementations§
source§impl<T> SyncPtr<T>
impl<T> SyncPtr<T>
sourcepub unsafe fn new(ptr: *mut T) -> Self
pub unsafe fn new(ptr: *mut T) -> Self
§Safety
This will make a pointer sync and send. Ensure that you don’t break aliasing rules.
pub fn from_const(ptr: *const T) -> Self
pub fn new_null() -> Self
pub fn get(&self) -> *mut T
pub fn is_null(&self) -> bool
sourcepub unsafe fn deref_unchecked(&self) -> &'static T
pub unsafe fn deref_unchecked(&self) -> &'static T
§Safety
Derefs a raw pointer, no guarantees whatsoever.
Trait Implementations§
impl<T: Copy> Copy for SyncPtr<T>
impl<T> Send for SyncPtr<T>
impl<T> Sync for SyncPtr<T>
Auto Trait Implementations§
impl<T> Freeze for SyncPtr<T>
impl<T> RefUnwindSafe for SyncPtr<T>where
T: RefUnwindSafe,
impl<T> Unpin for SyncPtr<T>
impl<T> UnwindSafe for SyncPtr<T>where
T: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more