[][src]Trait rxrust::ops::delay::Delay

pub trait Delay {
    fn delay(self, dur: Duration) -> DelayOp<Self>
    where
        Self: Sized
, { ... }
fn delay_at(self, at: Instant) -> DelayOp<Self>
    where
        Self: Sized
, { ... } }

Delays the emission of items from the source Observable by a given timeout or until a given Instant.

Provided methods

fn delay(self, dur: Duration) -> DelayOp<Self> where
    Self: Sized

fn delay_at(self, at: Instant) -> DelayOp<Self> where
    Self: Sized

Loading content...

Implementors

impl<S> Delay for S where
    S: RawSubscribable
[src]

Loading content...