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