Actor

Trait Actor 

Source
pub trait Actor:
    Debug
    + Clone
    + Hash
    + Eq
    + Ord { }
Expand description

Actor trait to be used in Clock’s or TClock’s.

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.

Implementors§

Source§

impl<A: Debug + Clone + Hash + Eq + Ord> Actor for A