pub struct ModifiedEntries {
pub modified_duties_registry_entries: Vec<(Pubkey, RexEntry)>,
pub added_rex_duties: Vec<(RexDutiesMapKey, RexDutiesMapValue)>,
pub removed_rex_duties: Vec<RexDutiesMapKey>,
pub modified_websocket_connections: Vec<(RexId, WebSocketConnection)>,
}Expand description
Represents a collection of modified REX-related entries.
This struct contains all the changes that occurred during REX processing, including registries updates and duty modifications. It serves as a consolidated view of all REX state changes that need to be persisted or propagated.
Fields§
§modified_duties_registry_entries: Vec<(Pubkey, RexEntry)>§added_rex_duties: Vec<(RexDutiesMapKey, RexDutiesMapValue)>§removed_rex_duties: Vec<RexDutiesMapKey>§modified_websocket_connections: Vec<(RexId, WebSocketConnection)>Trait Implementations§
Source§impl Clone for ModifiedEntries
impl Clone for ModifiedEntries
Source§fn clone(&self) -> ModifiedEntries
fn clone(&self) -> ModifiedEntries
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModifiedEntries
impl Debug for ModifiedEntries
Source§impl Default for ModifiedEntries
impl Default for ModifiedEntries
Source§fn default() -> ModifiedEntries
fn default() -> ModifiedEntries
Returns the “default value” for a type. Read more
impl Eq for ModifiedEntries
Source§impl PartialEq for ModifiedEntries
impl PartialEq for ModifiedEntries
Source§fn eq(&self, other: &ModifiedEntries) -> bool
fn eq(&self, other: &ModifiedEntries) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifiedEntries
Auto Trait Implementations§
impl Freeze for ModifiedEntries
impl RefUnwindSafe for ModifiedEntries
impl Send for ModifiedEntries
impl Sync for ModifiedEntries
impl Unpin for ModifiedEntries
impl UnsafeUnpin for ModifiedEntries
impl UnwindSafe for ModifiedEntries
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.