pub struct DayConvolution<F, G, A> {
pub left: F,
pub right: G,
pub _phantom: PhantomData<A>,
}Expand description
Day convolution of two functors F and G over A.
Fields§
§left: FLeft functor value.
right: GRight functor value.
_phantom: PhantomData<A>Combined value type marker.
Auto Trait Implementations§
impl<F, G, A> Freeze for DayConvolution<F, G, A>
impl<F, G, A> RefUnwindSafe for DayConvolution<F, G, A>
impl<F, G, A> Send for DayConvolution<F, G, A>
impl<F, G, A> Sync for DayConvolution<F, G, A>
impl<F, G, A> Unpin for DayConvolution<F, G, A>
impl<F, G, A> UnsafeUnpin for DayConvolution<F, G, A>where
F: UnsafeUnpin,
G: UnsafeUnpin,
impl<F, G, A> UnwindSafe for DayConvolution<F, G, A>
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