pub struct Sticky<T: 'static> { /* private fields */ }
Expand description
A Sticky<T>
keeps a value T stored in a thread.
This type works similar in nature to Fragile
and exposes a
similar interface. The difference is that whereas Fragile
has
its destructor called in the thread where the value was sent, a
Sticky
that is moved to another thread will have the internal
destructor called when the originating thread tears down.
Because Sticky
allows values to be kept alive for longer than the
Sticky
itself, it requires all its contents to be 'static
for
soundness. More importantly it also requires the use of StackToken
s.
For information about how to use stack tokens and why they are neded,
refer to stack_token!
.
As this uses TLS internally the general rules about the platform limitations of destructors for TLS apply.
Implementations
sourceimpl<T> Sticky<T>
impl<T> Sticky<T>
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<'stack>(&'stack self, _proof: &'stack StackToken) -> &'stack T
pub fn get<'stack>(&'stack self, _proof: &'stack StackToken) -> &'stack T
sourcepub fn get_mut<'stack>(
&'stack mut self,
_proof: &'stack StackToken
) -> &'stack mut T
pub fn get_mut<'stack>(
&'stack mut self,
_proof: &'stack StackToken
) -> &'stack 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<'stack>(
&'stack self,
_proof: &'stack StackToken
) -> Result<&'stack T, InvalidThreadAccess>
pub fn try_get<'stack>(
&'stack self,
_proof: &'stack StackToken
) -> Result<&'stack 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<'stack>(
&'stack mut self,
_proof: &'stack StackToken
) -> Result<&'stack mut T, InvalidThreadAccess>
pub fn try_get_mut<'stack>(
&'stack mut self,
_proof: &'stack StackToken
) -> Result<&'stack 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
sourceimpl<T: Ord> Ord for Sticky<T>
impl<T: Ord> Ord for Sticky<T>
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl<T: PartialEq> PartialEq<Sticky<T>> for Sticky<T>
impl<T: PartialEq> PartialEq<Sticky<T>> for Sticky<T>
sourceimpl<T: PartialOrd> PartialOrd<Sticky<T>> for Sticky<T>
impl<T: PartialOrd> PartialOrd<Sticky<T>> for Sticky<T>
sourcefn partial_cmp(&self, other: &Sticky<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Sticky<T>) -> Option<Ordering>
sourcefn le(&self, other: &Sticky<T>) -> bool
fn le(&self, other: &Sticky<T>) -> bool
self
and other
) and is used by the <=
operator. Read more