pub trait ApplicativeFunctor: Send + Sync + Debug { // Required method fn apply_functor(&self, value: &dyn Any) -> SklResult<Box<dyn Any>>; }
Trait for applicative functors
Apply the functor