pub struct CombineLatest<'a, Item, Out>{ /* private fields */ }
Implementations§
Source§impl<'a, Item, Out> CombineLatest<'a, Item, Out>
impl<'a, Item, Out> CombineLatest<'a, Item, Out>
pub fn new<F>( observables: &[Observable<'a, Item>], f: F, ) -> CombineLatest<'a, Item, Out>
pub fn execute(&self, source: Observable<'a, Item>) -> Observable<'a, Out>
Trait Implementations§
Source§impl<'a, Item, Out> Clone for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> Clone for CombineLatest<'a, Item, Out>
Source§fn clone(&self) -> CombineLatest<'a, Item, Out>
fn clone(&self) -> CombineLatest<'a, Item, Out>
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 moreAuto Trait Implementations§
impl<'a, Item, Out> Freeze for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> RefUnwindSafe for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> Send for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> Sync for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> Unpin for CombineLatest<'a, Item, Out>
impl<'a, Item, Out> UnwindSafe for CombineLatest<'a, Item, Out>
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