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.
sourcepub unsafe fn from_const(ptr: *const T) -> Self
pub unsafe fn from_const(ptr: *const T) -> Self
§Safety
This will make a pointer sync and send. Ensure that you don’t break aliasing rules.
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> 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