[][src]Struct force_send_sync::Send

pub struct Send<T>(_);

Wraps a type to make it implement Send.

Implementations

impl<T> Send<T>[src]

pub unsafe fn new(t: T) -> Self[src]

Safety

This is not a magic way to make t Send. It is a way to tell the compiler t is Send and you should only call this method if you are sure this is not a lie.

pub fn unwrap(self) -> T[src]

Destroy wrapper and get original type.

Trait Implementations

impl<T> Deref for Send<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Send<T>[src]

impl<T> Send for Send<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Send<T> where
    T: RefUnwindSafe

impl<T> Sync for Send<T> where
    T: Sync

impl<T> Unpin for Send<T> where
    T: Unpin

impl<T> UnwindSafe for Send<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.