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