pub struct GraphGeneratableEffectWitness<E, L>(/* private fields */);Expand description
HKT witness type for the graph generatable effect system.
This type is used internally by the HKT machinery to provide type-level evidence for the effect system’s structure.
Trait Implementations§
Source§impl<E: Clone, L: Clone + Default + LogAppend> Applicative<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
impl<E: Clone, L: Clone + Default + LogAppend> Applicative<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
Source§impl<E: Clone, L: Clone> Functor<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
impl<E: Clone, L: Clone> Functor<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
Source§impl<E, L> HKT for GraphGeneratableEffectWitness<E, L>
impl<E, L> HKT for GraphGeneratableEffectWitness<E, L>
Source§type Type<T> = GraphGeneratableEffect<T, E, L>
type Type<T> = GraphGeneratableEffect<T, E, L>
The Generic Associated Type (GAT) that represents the type constructor.
The
<T> is the “hole” in the type constructor (e.g., Option<T>).Source§impl<E, L> HKT3<E, L> for GraphGeneratableEffectWitness<E, L>
impl<E, L> HKT3<E, L> for GraphGeneratableEffectWitness<E, L>
Source§type Type<T> = GraphGeneratableEffect<T, E, L>
type Type<T> = GraphGeneratableEffect<T, E, L>
The GAT that represents the remaining type constructor.
The resulting kind is
* -> * (one hole <T> remaining). Read moreSource§impl<E: Clone, L: Clone + Default + LogAppend> Monad<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
impl<E: Clone, L: Clone + Default + LogAppend> Monad<GraphGeneratableEffectWitness<E, L>> for GraphGeneratableEffectWitness<E, L>
Auto Trait Implementations§
impl<E, L> Freeze for GraphGeneratableEffectWitness<E, L>
impl<E, L> RefUnwindSafe for GraphGeneratableEffectWitness<E, L>where
E: RefUnwindSafe,
L: RefUnwindSafe,
impl<E, L> Send for GraphGeneratableEffectWitness<E, L>
impl<E, L> Sync for GraphGeneratableEffectWitness<E, L>
impl<E, L> Unpin for GraphGeneratableEffectWitness<E, L>
impl<E, L> UnwindSafe for GraphGeneratableEffectWitness<E, L>where
E: UnwindSafe,
L: 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