Enum config_it::core::ReplicationEvent
source · pub enum ReplicationEvent {
InitialGroups(Vec<(GroupID, Arc<GroupContext>)>),
GroupAdded(GroupID, Arc<GroupContext>),
GroupRemoved(GroupID),
EntityValueUpdated {
group_id: GroupID,
item_id: ItemID,
},
}Expand description
Message type to notify backend
Variants§
InitialGroups(Vec<(GroupID, Arc<GroupContext>)>)
GroupAdded(GroupID, Arc<GroupContext>)
GroupRemoved(GroupID)
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for ReplicationEvent
impl Send for ReplicationEvent
impl Sync for ReplicationEvent
impl Unpin for ReplicationEvent
impl !UnwindSafe for ReplicationEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more