Enum config_it::core::ReplicationEvent
source · pub enum ReplicationEvent {
InitialGroups(Vec<(u64, Arc<GroupContext>)>),
GroupAdded(u64, Arc<GroupContext>),
GroupRemoved(u64),
EntityValueUpdated {
group_id: u64,
item_id: u64,
},
}Expand description
Message type to notify backend
Variants§
InitialGroups(Vec<(u64, Arc<GroupContext>)>)
GroupAdded(u64, Arc<GroupContext>)
GroupRemoved(u64)
EntityValueUpdated
Trait Implementations§
source§impl Clone for ReplicationEvent
impl Clone for ReplicationEvent
source§fn clone(&self) -> ReplicationEvent
fn clone(&self) -> ReplicationEvent
Returns a copy of the value. Read more
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