pub struct FreeAltF<F>(/* private fields */)
where
F: HKT + 'static;Expand description
Marker type for FreeAlt<F, _>.
Note: Cannot implement HKT, Functor, Alt, or Plus due to Rust’s
GAT limitations (type Of<T> cannot add T: 'static in impl when trait
doesn’t have it). Use FreeAlt methods directly.
Auto Trait Implementations§
impl<F> Freeze for FreeAltF<F>
impl<F> RefUnwindSafe for FreeAltF<F>where
F: RefUnwindSafe,
impl<F> Send for FreeAltF<F>where
F: Send,
impl<F> Sync for FreeAltF<F>where
F: Sync,
impl<F> Unpin for FreeAltF<F>where
F: Unpin,
impl<F> UnsafeUnpin for FreeAltF<F>
impl<F> UnwindSafe for FreeAltF<F>where
F: 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