pub trait ApplyUpdate<Entity>: GetUpdateKind<Entity> {
    // Required method
    fn apply_update(self, entity: &mut Entity);
}
Expand description

Applies an update to the entity.

Required Methods§

source

fn apply_update(self, entity: &mut Entity)

Applies update contained in self to the supplied entity.

Implementations on Foreign Types§

source§

impl<V> ApplyUpdate<V> for ()

Implementors§