pub struct Sequence<I, M> { /* private fields */ }Expand description
The sequence of computations.
Trait Implementations§
Source§impl<I, M> Composite for Sequence<I, M>
impl<I, M> Composite for Sequence<I, M>
Source§type Item = Vec<<M as Composite>::Item>
type Item = Vec<<M as Composite>::Item>
The type of the item that is returned in the current modeling time.
Source§fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
Bind the current computation with its continuation within the resulting computation.
Source§fn map<B, F>(self, f: F) -> Map<Self, B, F>
fn map<B, F>(self, f: F) -> Map<Self, B, F>
Map the current computation using the specified transform.
Source§fn zip<U>(self, other: U) -> Zip<Self, U>
fn zip<U>(self, other: U) -> Zip<Self, U>
Zip the current computation with another one within the resulting computation.
Source§fn into_boxed(self) -> CompositeBox<Self::Item>where
Self: Sized + 'static,
fn into_boxed(self) -> CompositeBox<Self::Item>where
Self: Sized + 'static,
Convert into a boxed value.
Auto Trait Implementations§
impl<I, M> Freeze for Sequence<I, M>where
I: Freeze,
impl<I, M> RefUnwindSafe for Sequence<I, M>where
I: RefUnwindSafe,
M: RefUnwindSafe,
impl<I, M> Send for Sequence<I, M>
impl<I, M> Sync for Sequence<I, M>
impl<I, M> Unpin for Sequence<I, M>
impl<I, M> UnwindSafe for Sequence<I, M>where
I: UnwindSafe,
M: UnwindSafe,
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