pub struct Ap<M, U, B> { /* private fields */ }Expand description
The function application for the Composite computation.
Trait Implementations§
Source§impl<M, U, B> Composite for Ap<M, U, B>
 
impl<M, U, B> Composite for Ap<M, U, B>
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>
 
fn into_boxed(self) -> CompositeBox<Self::Item>
Convert into a boxed value.
Auto Trait Implementations§
impl<M, U, B> Freeze for Ap<M, U, B>
impl<M, U, B> RefUnwindSafe for Ap<M, U, B>
impl<M, U, B> Send for Ap<M, U, B>
impl<M, U, B> Sync for Ap<M, U, B>
impl<M, U, B> Unpin for Ap<M, U, B>
impl<M, U, B> UnwindSafe for Ap<M, U, B>
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