pub trait SyncComponent:
Component<Mutability = Mutable>
+ Clone
+ PartialEq { }Expand description
Trait for components that can be synchronized for interpolation.
This is a marker trait, requiring Component<Mutability=Mutable> + Clone + PartialEq.
Components implementing this trait can have their state managed by the interpolation systems
according to the specified InterpolationMode.
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.