trait ErasedGameRuleValue:
ErasedType
+ Debug
+ Display
+ Send
+ Sync {
// Required method
fn clone_value(&self) -> Box<dyn ErasedGameRuleValue>;
}Required Methods§
fn clone_value(&self) -> Box<dyn ErasedGameRuleValue>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".