pub trait WithNotion<T: 'static> {
// Required method
fn apply(self: Rc<Self>, notion: Rc<T>) -> Rc<Self>;
}Expand description
A trait to apply a notion on a state.
See: use_notion_applier
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.