pub struct Sticky<T> { /* private fields */ }
Expand description
A Sticky<T>
keeps a value T stored in a thread.
This type works similar in nature to Fragile<T>
and exposes the
same interface. The difference is that whereas Fragile<T>
has
its destructor called in the thread where the value was sent, a
Sticky<T>
that is moved to another thread will have the internal
destructor called when the originating thread tears down.
As this uses TLS internally the general rules about the platform limitations of destructors for TLS apply.
Implementations§
Source§impl<T> Sticky<T>
impl<T> Sticky<T>
Sourcepub fn new(value: T) -> Self
pub fn new(value: T) -> Self
Creates a new Sticky
wrapping a value
.
The value that is moved into the Sticky
can be non Send
and
will be anchored to the thread that created the object. If the
sticky wrapper type ends up being send from thread to thread
only the original thread can interact with the value.
Sourcepub fn is_valid(&self) -> bool
pub fn is_valid(&self) -> bool
Returns true
if the access is valid.
This will be false
if the value was sent to another thread.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the Sticky
, returning the wrapped value.
§Panics
Panics if called from a different thread than the one where the original value was created.
Sourcepub fn try_into_inner(self) -> Result<T, Self>
pub fn try_into_inner(self) -> Result<T, Self>
Consumes the Sticky
, returning the wrapped value if successful.
The wrapped value is returned if this is called from the same thread
as the one where the original value was created, otherwise the
Sticky
is returned as Err(self)
.
Sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Mutably borrows the wrapped value.
§Panics
Panics if the calling thread is not the one that wrapped the value.
For a non-panicking variant, use try_get_mut
.
Sourcepub fn try_get(&self) -> Result<&T, InvalidThreadAccess>
pub fn try_get(&self) -> Result<&T, InvalidThreadAccess>
Tries to immutably borrow the wrapped value.
Returns None
if the calling thread is not the one that wrapped the value.
Sourcepub fn try_get_mut(&mut self) -> Result<&mut T, InvalidThreadAccess>
pub fn try_get_mut(&mut self) -> Result<&mut T, InvalidThreadAccess>
Tries to mutably borrow the wrapped value.
Returns None
if the calling thread is not the one that wrapped the value.
Trait Implementations§
Source§impl<T: Ord> Ord for Sticky<T>
impl<T: Ord> Ord for Sticky<T>
Source§impl<T: PartialOrd> PartialOrd for Sticky<T>
impl<T: PartialOrd> PartialOrd for Sticky<T>
impl<T: Eq> Eq for Sticky<T>
impl<T> Send for Sticky<T>
impl<T> Sync for Sticky<T>
Auto Trait Implementations§
impl<T> Freeze for Sticky<T>
impl<T> RefUnwindSafe for Sticky<T>where
T: RefUnwindSafe,
impl<T> Unpin for Sticky<T>
impl<T> UnwindSafe for Sticky<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
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)
clone_to_uninit
)