Struct futures_util::compat::CompatSink [−][src]
#[must_use = "sinks do nothing unless polled"]pub struct CompatSink<T, Item> { /* fields omitted */ }
Implementations
impl<T, Item> CompatSink<T, Item>
[src]
impl<T, Item> CompatSink<T, Item>
[src]Trait Implementations
impl<T: Debug, Item: Debug> Debug for CompatSink<T, Item>
[src]
impl<T: Debug, Item: Debug> Debug for CompatSink<T, Item>
[src]impl<T, Item> Sink for CompatSink<T, Item> where
T: Sink03<Item> + Unpin,
[src]
impl<T, Item> Sink for CompatSink<T, Item> where
T: Sink03<Item> + Unpin,
[src]type SinkItem = Item
The type of value that the sink accepts.
type SinkError = T::Error
The type of value produced by the sink when an error occurs.
fn start_send(
&mut self,
item: Self::SinkItem
) -> StartSend01<Self::SinkItem, Self::SinkError>
[src]
&mut self,
item: Self::SinkItem
) -> StartSend01<Self::SinkItem, Self::SinkError>
fn poll_complete(&mut self) -> Poll01<(), Self::SinkError>
[src]
fn close(&mut self) -> Poll01<(), Self::SinkError>
[src]
pub fn wait(self) -> Wait<Self>
[src]
pub 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>,
[src]
F: FnMut(U) -> Fut,
Fut: IntoFuture<Item = Self::SinkItem>,
<Fut as IntoFuture>::Error: From<Self::SinkError>,
pub 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>,
[src]
F: FnMut(U) -> St,
St: Stream<Item = Self::SinkItem, Error = Self::SinkError>,
pub fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::SinkError) -> E,
[src]
F: FnOnce(Self::SinkError) -> E,
pub fn sink_from_err<E>(self) -> SinkFromErr<Self, E> where
E: From<Self::SinkError>,
[src]
E: From<Self::SinkError>,
pub fn buffer(self, amt: usize) -> Buffer<Self>
[src]
pub fn fanout<S>(self, other: S) -> Fanout<Self, S> where
S: Sink<SinkItem = Self::SinkItem, SinkError = Self::SinkError>,
Self::SinkItem: Clone,
[src]
S: Sink<SinkItem = Self::SinkItem, SinkError = Self::SinkError>,
Self::SinkItem: Clone,
pub fn flush(self) -> Flush<Self>
[src]
pub fn send(self, item: Self::SinkItem) -> Send<Self>
[src]
pub fn send_all<S>(self, stream: S) -> SendAll<Self, S> where
S: Stream<Item = Self::SinkItem>,
Self::SinkError: From<<S as Stream>::Error>,
[src]
S: Stream<Item = Self::SinkItem>,
Self::SinkError: From<<S as Stream>::Error>,
Auto Trait Implementations
impl<T, Item> RefUnwindSafe for CompatSink<T, Item> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, Item> Send for CompatSink<T, Item> where
T: Send,
T: Send,
impl<T, Item> Sync for CompatSink<T, Item> where
T: Sync,
T: Sync,
impl<T, Item> Unpin for CompatSink<T, Item> where
T: Unpin,
T: Unpin,
impl<T, Item> UnwindSafe for CompatSink<T, Item> where
T: UnwindSafe,
T: UnwindSafe,