pub struct LanF<G, H, B>(/* private fields */)
where
G: HKT,
H: HKT;Expand description
Marker type for Lan<G, H, _, B>.
Note: Cannot implement HKT or Functor due to Rust’s GAT limitations
(extra type parameters G, H, B cannot be threaded through type Of<T>).
Use Lan::fmap directly.
Auto Trait Implementations§
impl<G, H, B> Freeze for LanF<G, H, B>
impl<G, H, B> RefUnwindSafe for LanF<G, H, B>
impl<G, H, B> Send for LanF<G, H, B>
impl<G, H, B> Sync for LanF<G, H, B>
impl<G, H, B> Unpin for LanF<G, H, B>
impl<G, H, B> UnsafeUnpin for LanF<G, H, B>
impl<G, H, B> UnwindSafe for LanF<G, H, 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