pub struct ComposeF<F, G>(/* private fields */);Expand description
Marker type for the composition of two type constructors: (F . G)(A) = F(G(A)).
Given F: HKT and G: HKT, ComposeF<F, G> is itself an HKT where
Of<A> = F::Of<G::Of<A>>.
Trait Implementations§
Auto Trait Implementations§
impl<F, G> Freeze for ComposeF<F, G>
impl<F, G> RefUnwindSafe for ComposeF<F, G>where
F: RefUnwindSafe,
G: RefUnwindSafe,
impl<F, G> Send for ComposeF<F, G>
impl<F, G> Sync for ComposeF<F, G>
impl<F, G> Unpin for ComposeF<F, G>
impl<F, G> UnsafeUnpin for ComposeF<F, G>
impl<F, G> UnwindSafe for ComposeF<F, G>where
F: UnwindSafe,
G: 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