[−][src]Struct rxrust::ops::throttle_time::ThrottleTimeObserver
Trait Implementations
impl<O, Item, Err> Observer<Item, Err> for ThrottleTimeObserver<O, Item> where
O: Observer<Item, Err> + Send + 'static,
Item: Clone + Send + 'static,
[src]
O: Observer<Item, Err> + Send + 'static,
Item: Clone + Send + 'static,
impl<O, Item> IntoShared for ThrottleTimeObserver<O, Item> where
O: Send + Sync + 'static,
Item: Send + Sync + 'static,
[src]
O: Send + Sync + 'static,
Item: Send + Sync + 'static,
Auto Trait Implementations
impl<O, Item> Send for ThrottleTimeObserver<O, Item> where
Item: Send,
O: Send,
Item: Send,
O: Send,
impl<O, Item> Sync for ThrottleTimeObserver<O, Item> where
Item: Send,
O: Send,
Item: Send,
O: Send,
impl<O, Item> Unpin for ThrottleTimeObserver<O, Item>
impl<O, Item> UnwindSafe for ThrottleTimeObserver<O, Item>
impl<O, Item> RefUnwindSafe for ThrottleTimeObserver<O, Item>
Blanket Implementations
impl<Item, O> Last<Item> for O
[src]
fn last_or(self, default: Item) -> LastOrOp<Self, Item> where
Self: Sized,
[src]
Self: Sized,
fn last(self) -> LastOrOp<Self, Item> where
Self: Sized,
[src]
Self: Sized,
impl<O, OutputItem> Reduce<OutputItem> for O
[src]
fn reduce_initial<InputItem, BinaryOp>(
self,
initial: OutputItem,
binary_op: BinaryOp
) -> ReduceOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Clone,
[src]
self,
initial: OutputItem,
binary_op: BinaryOp
) -> ReduceOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Clone,
fn reduce<InputItem, BinaryOp>(
self,
binary_op: BinaryOp
) -> LastOrOp<ScanOp<Self, BinaryOp, InputItem, OutputItem>, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Default + Clone,
[src]
self,
binary_op: BinaryOp
) -> LastOrOp<ScanOp<Self, BinaryOp, InputItem, OutputItem>, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Default + Clone,
impl<O, Item> MinMax<Item> for O
[src]
fn max(self) -> MinMaxOp<Self, Item> where
Self: Sized,
Item: Copy + Send + PartialOrd<Item>,
[src]
Self: Sized,
Item: Copy + Send + PartialOrd<Item>,
fn min(self) -> MinMaxOp<Self, Item> where
Self: Sized,
Item: Copy + Send + PartialOrd<Item>,
[src]
Self: Sized,
Item: Copy + Send + PartialOrd<Item>,
impl<O, Item> Sum<Item> for O
[src]
fn sum(self) -> SumOp<Self, Item> where
Self: Sized,
Item: Copy + Default + Add<Item, Output = Item>,
[src]
Self: Sized,
Item: Copy + Default + Add<Item, Output = Item>,
impl<O> Count for O
[src]
impl<O, Item> Average<Item> for O where
Item: Copy + Send + Default + Add<Item, Output = Item> + Mul<f64, Output = Item>,
[src]
Item: Copy + Send + Default + Add<Item, Output = Item> + Mul<f64, Output = Item>,
fn average(
Self
) -> MapOp<LastOrOp<ScanOp<O, fn((Item, usize), Item) -> (Item, usize), Item, (Item, usize)>, (Item, usize)>, fn((Item, usize)) -> Item, (Item, usize)>
[src]
Self
) -> MapOp<LastOrOp<ScanOp<O, fn((Item, usize), Item) -> (Item, usize), Item, (Item, usize)>, (Item, usize)>, fn((Item, usize)) -> Item, (Item, usize)>
impl<O, Item> Map<Item> for O
[src]
impl<'a, T, O> Filter<T> for O
[src]
impl<O, OutputItem> Scan<OutputItem> for O
[src]
fn scan_initial<InputItem, BinaryOp>(
self,
initial_value: OutputItem,
binary_op: BinaryOp
) -> ScanOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
[src]
self,
initial_value: OutputItem,
binary_op: BinaryOp
) -> ScanOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
fn scan<InputItem, BinaryOp>(
self,
binary_op: BinaryOp
) -> ScanOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Default,
[src]
self,
binary_op: BinaryOp
) -> ScanOp<Self, BinaryOp, InputItem, OutputItem> where
Self: Sized,
BinaryOp: Fn(OutputItem, InputItem) -> OutputItem,
OutputItem: Default,
impl<O> Merge for O
[src]
impl<O> Take for O
[src]
impl<O> First for O
[src]
impl<Item, O> FirstOr<Item> for O
[src]
impl<T> SubscribeOn for T
[src]
fn subscribe_on<SD>(self, scheduler: SD) -> SubscribeOnOP<Self, SD> where
Self: Sized,
[src]
Self: Sized,
impl<S> ObserveOn for S
[src]
fn observe_on<SD>(self, scheduler: SD) -> ObserveOnOp<Self, SD> where
Self: Sized,
[src]
Self: Sized,
impl<S> Delay for S
[src]
fn delay(self, dur: Duration) -> DelayOp<Self> where
Self: Sized,
[src]
Self: Sized,
fn delay_at(self, at: Instant) -> DelayOp<Self> where
Self: Sized,
[src]
Self: Sized,
impl<S> ThrottleTime for S
[src]
fn throttle_time(
self,
duration: Duration,
edge: ThrottleEdge
) -> ThrottleTimeOp<Self>
[src]
self,
duration: Duration,
edge: ThrottleEdge
) -> ThrottleTimeOp<Self>
impl<'a, Item, Err, T> Publish<'a, Item, Err> for T
[src]
fn publish(self) -> LocalConnectableObservable<'a, Self, Item, Err>
[src]
impl<T> FilterMap for T
[src]
fn filter_map<F, SourceItem, Item>(
self,
f: F
) -> FilterMapOp<Self, F, SourceItem> where
F: FnMut(SourceItem) -> Option<Item>,
[src]
self,
f: F
) -> FilterMapOp<Self, F, SourceItem> where
F: FnMut(SourceItem) -> Option<Item>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,