Struct futures_util::compat::CompatSink
source · [−]pub struct CompatSink<T, Item> { /* private fields */ }
Implementations
sourceimpl<T, Item> CompatSink<T, Item>
impl<T, Item> CompatSink<T, Item>
Trait Implementations
sourceimpl<T: Debug, Item: Debug> Debug for CompatSink<T, Item>
impl<T: Debug, Item: Debug> Debug for CompatSink<T, Item>
sourceimpl<T, Item> Sink for CompatSink<T, Item> where
T: Sink03<Item> + Unpin,
impl<T, Item> Sink for CompatSink<T, Item> where
T: Sink03<Item> + Unpin,
type SinkItem = Item
type SinkItem = Item
The type of value that the sink accepts.
sourcefn start_send(
&mut self,
item: Self::SinkItem
) -> StartSend01<Self::SinkItem, Self::SinkError>
fn start_send(
&mut self,
item: Self::SinkItem
) -> StartSend01<Self::SinkItem, Self::SinkError>
Begin the process of sending a value to the sink. Read more
sourcefn poll_complete(&mut self) -> Poll01<(), Self::SinkError>
fn poll_complete(&mut self) -> Poll01<(), Self::SinkError>
Flush all output from this sink, if necessary. Read more
sourcefn close(&mut self) -> Poll01<(), Self::SinkError>
fn close(&mut self) -> Poll01<(), Self::SinkError>
A method to indicate that no more values will ever be pushed into this sink. Read more
sourcefn wait(self) -> Wait<Self>
fn wait(self) -> Wait<Self>
Creates a new object which will produce a synchronous sink. Read more
sourcefn with<U, F, Fut>(self, f: F) -> With<Self, U, F, Fut> where
F: FnMut(U) -> Fut,
Fut: IntoFuture<Item = Self::SinkItem>,
<Fut as IntoFuture>::Error: From<Self::SinkError>,
fn with<U, F, Fut>(self, f: F) -> With<Self, U, F, Fut> where
F: FnMut(U) -> Fut,
Fut: IntoFuture<Item = Self::SinkItem>,
<Fut as IntoFuture>::Error: From<Self::SinkError>,
Composes a function in front of the sink. Read more
sourcefn with_flat_map<U, F, St>(self, f: F) -> WithFlatMap<Self, U, F, St> where
F: FnMut(U) -> St,
St: Stream<Item = Self::SinkItem, Error = Self::SinkError>,
fn with_flat_map<U, F, St>(self, f: F) -> WithFlatMap<Self, U, F, St> where
F: FnMut(U) -> St,
St: Stream<Item = Self::SinkItem, Error = Self::SinkError>,
Composes a function in front of the sink. Read more
sourcefn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::SinkError) -> E,
fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::SinkError) -> E,
Transforms the error returned by the sink.
sourcefn sink_from_err<E>(self) -> SinkFromErr<Self, E> where
E: From<Self::SinkError>,
fn sink_from_err<E>(self) -> SinkFromErr<Self, E> where
E: From<Self::SinkError>,
Map this sink’s error to any error implementing From
for this sink’s
Error
, returning a new sink. Read more
sourcefn buffer(self, amt: usize) -> Buffer<Self>
fn buffer(self, amt: usize) -> Buffer<Self>
Adds a fixed-size buffer to the current sink. Read more
sourcefn fanout<S>(self, other: S) -> Fanout<Self, S> where
S: Sink<SinkItem = Self::SinkItem, SinkError = Self::SinkError>,
Self::SinkItem: Clone,
fn fanout<S>(self, other: S) -> Fanout<Self, S> where
S: Sink<SinkItem = Self::SinkItem, SinkError = Self::SinkError>,
Self::SinkItem: Clone,
Fanout items to multiple sinks. Read more
sourcefn flush(self) -> Flush<Self>
fn flush(self) -> Flush<Self>
A future that completes when the sink has finished processing all pending requests. Read more
Auto Trait Implementations
impl<T, Item> RefUnwindSafe for CompatSink<T, Item> where
T: RefUnwindSafe,
impl<T, Item> Send for CompatSink<T, Item> where
T: Send,
impl<T, Item> Sync for CompatSink<T, Item> where
T: Sync,
impl<T, Item> Unpin for CompatSink<T, Item> where
T: Unpin,
impl<T, Item> UnwindSafe for CompatSink<T, Item> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more