Trait CodedAction
pub trait CodedAction:
Sized
+ Action<Single>
+ Eq
+ PartialEq
+ Ord
+ PartialOrd
+ Display
+ Debug
+ Default
+ Hash
+ Copy
+ Clone { }Expand description
Encoded, compact and opaque action.
Default trait implementation default() is expected to return a value that represents no action overwrite. All rust number primitive types are implemented for CodedAction.
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.