Skip to main content

Action

Trait Action 

Source
pub trait Action:
    Serialize
    + DeserializeOwned
    + Send
    + Sync
    + 'static {
    type Output: Serialize + DeserializeOwned + Send + 'static;

    const NAME: &'static str;
}

Required Associated Constants§

Source

const NAME: &'static str

Required Associated Types§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§