Struct lazy_queue::unsync::unbounded::LazyQueue [−][src]
pub struct LazyQueue<Item> { /* fields omitted */ }
Expand description
A clonable single-threaded sink-like queue.
Implementations
pub fn new<F, I>(processor: F) -> (Self, QueueProcessor<Item, F, I>) where
F: FnMut(Item) -> I,
I: IntoFuture,
[src]
pub fn new<F, I>(processor: F) -> (Self, QueueProcessor<Item, F, I>) where
F: FnMut(Item) -> I,
I: IntoFuture,
[src]Creates a new lazy queue using given processor.
Trait Implementations
type SinkItem = Item
type SinkItem = Item
The type of value that the sink accepts.
Begin the process of sending a value to the sink. Read more
Flush all output from this sink, if necessary. Read more
A method to indicate that no more values will ever be pushed into this sink. Read more
Creates a new object which will produce a synchronous sink. Read more
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]
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]Composes a function in front of the sink. Read more
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]
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]Composes a function in front of the sink. Read more
fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::SinkError) -> E,
[src]
fn sink_map_err<F, E>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::SinkError) -> E,
[src]Transforms the error returned by the sink.
Map this sink’s error to any error implementing From
for this sink’s
Error
, returning a new sink. Read more
Adds a fixed-size buffer to the current sink. Read more
Fanout items to multiple sinks. Read more
A future that completes when the sink has finished processing all pending requests. Read more
A future that completes after the given item has been fully processed into the sink, including flushing. Read more
Auto Trait Implementations
impl<Item> !RefUnwindSafe for LazyQueue<Item>
impl<Item> !UnwindSafe for LazyQueue<Item>
Blanket Implementations
Mutably borrows from an owned value. Read more