pub trait State:
Debug
+ Sized
+ Clone
+ Send
+ Sync
+ 'static { }Expand description
Trait that all state types must implement. States must be clonable, debuggable and thread-safe.
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.