Trait dock_core::util::batch_update::KeyedUpdate
source · pub trait KeyedUpdate<Entity: Deref>where
Entity::Target: KeyValue,{
type Targets<'targets>: Iterator<Item = &'targets <Entity::Target as KeyValue>::Key> + 'targets
where Self: 'targets,
<Entity::Target as KeyValue>::Key: 'targets,
Entity: 'targets;
// Required methods
fn size(&self) -> u32;
fn targets<'targets>(
&'targets self,
entity: &'targets Entity
) -> Self::Targets<'targets>;
fn keys_diff(
&self,
entity: &Entity
) -> MultiTargetUpdate<<Entity::Target as KeyValue>::Key, AddOrRemoveOrModify<()>>;
// Provided method
fn record_inner_keys_diff<K: Ord + Clone>(
&self,
entity: &Entity,
inner_key: K,
map: &mut MultiTargetUpdate<<Entity::Target as KeyValue>::Key, MultiTargetUpdate<K, AddOrRemoveOrModify<()>>>
) -> Result<(), DuplicateKey> { ... }
}
Expand description
Series of updates applied over some targets.