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§

source

fn create(user: i32, item: i32, actions: Vec<ActionInstance>) -> Self

Object Safety§

This trait is not object safe.

Implementors§