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