pub struct StreamCompat<Pul> { /* private fields */ }Implementations§
Source§impl<Pul> StreamCompat<Pul>
impl<Pul> StreamCompat<Pul>
Sourcepub fn into_inner(self) -> Pul
pub fn into_inner(self) -> Pul
Returns the wrapped Pull.
Trait Implementations§
Source§impl<Pul> AsMut<Pul> for StreamCompat<Pul>
impl<Pul> AsMut<Pul> for StreamCompat<Pul>
Source§impl<Pul> AsRef<Pul> for StreamCompat<Pul>
impl<Pul> AsRef<Pul> for StreamCompat<Pul>
Source§impl<Pul> Stream for StreamCompat<Pul>
impl<Pul> Stream for StreamCompat<Pul>
impl<'__pin, Pul> Unpin for StreamCompat<Pul>where
PinnedFieldsOf<__Origin<'__pin, Pul>>: Unpin,
Auto Trait Implementations§
impl<Pul> Freeze for StreamCompat<Pul>where
Pul: Freeze,
impl<Pul> RefUnwindSafe for StreamCompat<Pul>where
Pul: RefUnwindSafe,
impl<Pul> Send for StreamCompat<Pul>where
Pul: Send,
impl<Pul> Sync for StreamCompat<Pul>where
Pul: Sync,
impl<Pul> UnsafeUnpin for StreamCompat<Pul>where
Pul: UnsafeUnpin,
impl<Pul> UnwindSafe for StreamCompat<Pul>where
Pul: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more