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 for SyncPtr<T>
impl<T: Eq> Eq for SyncPtr<T>
impl<T> Send for SyncPtr<T>
impl<T> StructuralPartialEq 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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