pub struct FunctionalComposition {
pub composition_id: String,
pub composition_chain: Vec<Box<dyn CompositionFunction>>,
pub monad_transformers: Vec<Box<dyn MonadTransformer>>,
pub applicative_functors: Vec<Box<dyn ApplicativeFunctor>>,
pub morphisms: Vec<CategoryMorphism>,
}Expand description
Functional composition
Fields§
§composition_id: StringComposition identifier
composition_chain: Vec<Box<dyn CompositionFunction>>Function composition chain
monad_transformers: Vec<Box<dyn MonadTransformer>>Monad transformers
applicative_functors: Vec<Box<dyn ApplicativeFunctor>>Applicative functors
morphisms: Vec<CategoryMorphism>Category morphisms
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FunctionalComposition
impl !RefUnwindSafe for FunctionalComposition
impl Send for FunctionalComposition
impl Sync for FunctionalComposition
impl Unpin for FunctionalComposition
impl !UnwindSafe for FunctionalComposition
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more