Struct parity_send_wrapper::SendWrapper [−][src]
pub struct SendWrapper<T> { /* fields omitted */ }
A wrapper which allows you to move around non-Send
-types between threads, as long as you access the contained
value only from within the original thread and make sure that it is dropped from within the original thread.
Implementations
impl<T> SendWrapper<T>
[src]
impl<T> SendWrapper<T>
[src]pub fn new(data: T) -> SendWrapper<T>
[src]
Create a SendWrapper
pub fn valid(&self) -> bool
[src]
Returns if the value can be safely accessed from within the current thread.
pub fn take(self) -> T
[src]
Takes the value out of the SendWrapper.
#Panics
Panics if it is called from a different thread than the one the SendWrapper
Trait Implementations
impl<T> Deref for SendWrapper<T>
[src]
impl<T> Deref for SendWrapper<T>
[src]impl<T> DerefMut for SendWrapper<T>
[src]
impl<T> DerefMut for SendWrapper<T>
[src]impl<T> Drop for SendWrapper<T>
[src]
impl<T> Drop for SendWrapper<T>
[src]fn drop(&mut self)
[src]
Drops the contained value.
Panics
Dropping panics if it is done from a different thread than the one the SendWrapper
impl<T> Send for SendWrapper<T>
[src]
impl<T> Sync for SendWrapper<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for SendWrapper<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Unpin for SendWrapper<T>
impl<T> UnwindSafe for SendWrapper<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,