pub trait FromActionSet {
// Required method
fn create(user: i32, item: i32, actions: Vec<ActionInstance>) -> Self;
}
Expand description
Collapse a sequence of actions into an action record.
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.