Trait Behavior

Source
pub trait Behavior:
    'static
    + Debug
    + Send
    + Sync { }
Expand description

A trait describing required properties for a behavior type.

Implementors§

Source§

impl<T: 'static + Debug + Send + Sync> Behavior for T