pub trait Action: Send + Sync {
    // Required method
    fn name(&self) -> ActionName;
}
Expand description

An action that can be allowed or disallowed.

Required Methods§

fn name(&self) -> ActionName

The full name of this action.

Implementations on Foreign Types§

§

impl Action for ()

§

fn name(&self) -> ActionName

Implementors§