pub trait RoundStoreExt: RoundStore {
// Required methods
fn read_prop<P: Any>(&self) -> Option<P>;
fn set_prop<P: Clone + 'static>(self, value: P) -> WithProp<P, Self>;
}Expand description
Extra functionalities defined for any RoundStore
Required Methods§
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.