pub struct MultiStrategy { /* private fields */ }Expand description
A polling strategy that combines multiple strategies The strategies are executed in the order they were added to the builder In case of multiple strategies being ready at the same time, the first one added will be chosen
Trait Implementations§
Source§impl Clone for MultiStrategy
impl Clone for MultiStrategy
Source§fn clone(&self) -> MultiStrategy
fn clone(&self) -> MultiStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MultiStrategy
impl Debug for MultiStrategy
Source§impl PollStrategy for MultiStrategy
impl PollStrategy for MultiStrategy
Auto Trait Implementations§
impl Freeze for MultiStrategy
impl RefUnwindSafe for MultiStrategy
impl Send for MultiStrategy
impl Sync for MultiStrategy
impl Unpin for MultiStrategy
impl UnwindSafe for MultiStrategy
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PollStrategyExt for Twhere
T: PollStrategy,
impl<T> PollStrategyExt for Twhere
T: PollStrategy,
Source§fn build_stream(
self,
ctx: &PollContext,
) -> Pin<Box<dyn Stream<Item = ()> + Send>>where
Self::Stream: 'static,
fn build_stream(
self,
ctx: &PollContext,
) -> Pin<Box<dyn Stream<Item = ()> + Send>>where
Self::Stream: 'static,
Build a boxed stream from the strategy
This is a convenience method that boxes the strategy and calls
poll_strategy