[][src]Trait batch_oper::named_into::IntoPin

pub trait IntoPin: Sized + Deref {
    fn pin(self) -> Pin<Self>
    where
        Self::Target: Unpin
, { ... }
unsafe fn pin_unchecked(self) -> Pin<Self> { ... } }

Provided methods

fn pin(self) -> Pin<Self> where
    Self::Target: Unpin

unsafe fn pin_unchecked(self) -> Pin<Self>

Loading content...

Implementors

impl<T: Deref> IntoPin for T[src]

Loading content...