pub trait PropertyMutate:
PropertyMutateClone
+ Send
+ Sync
+ 'static {
// Required method
fn mutate(&mut self, property_index: u8) -> bool;
}Expand description
Tracks which Properties have changed and need to be queued for syncing with the Client
Required Methods§
Trait Implementations§
Source§impl Clone for Box<dyn PropertyMutate>
impl Clone for Box<dyn PropertyMutate>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more