Trait ractor::State

source ·
pub trait State: Any + Send + 'static { }
Expand description

Represents the state of an actor. Must be safe to send between threads (same bounds as a Message)

Implementors§

source§

impl<T: Any + Send + 'static> State for T