pub struct ComposeF<F: ?Sized, G: ?Sized>(/* private fields */);
Expand description
Composition for TypeFunction
s, i.e. ApF<ComposeF<F, G>, T> == ApF<F, ApF<G, T>>
Trait Implementations§
Source§impl<F, G, Arg: ?Sized> TypeFunction<Arg> for ComposeF<F, G>
impl<F, G, Arg: ?Sized> TypeFunction<Arg> for ComposeF<F, G>
Source§type Result = <F as TypeFunction<<G as TypeFunction<Arg>>::Result>>::Result
type Result = <F as TypeFunction<<G as TypeFunction<Arg>>::Result>>::Result
The type that
Arg
is mapped to by the implementor.Auto Trait Implementations§
impl<F, G> Freeze for ComposeF<F, G>
impl<F, G> RefUnwindSafe for ComposeF<F, G>
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> UnwindSafe for ComposeF<F, G>
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