pub struct ReconcileReport {
pub version: u64,
pub published: bool,
pub delta_len: usize,
pub replanned: Vec<ConnectionId>,
pub routing_recompiled: bool,
pub closed: Vec<ConnectionId>,
pub refused: Option<BuildError>,
}Expand description
What one Shard::reconcile did. Everything an operator or a test needs.
Fields§
§version: u64The version after this turn.
published: boolWhether a new version was published.
delta_len: usizeHow many operations the shared delta held.
replanned: Vec<ConnectionId>Connections that took the slow path because their observation moved.
routing_recompiled: boolWhether the audio routing table was recompiled.
closed: Vec<ConnectionId>Connections that must be torn down.
refused: Option<BuildError>Set when the render was refused: the previous view was kept.
Trait Implementations§
Source§impl Clone for ReconcileReport
impl Clone for ReconcileReport
Source§fn clone(&self) -> ReconcileReport
fn clone(&self) -> ReconcileReport
Returns a duplicate 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 moreSource§impl Debug for ReconcileReport
impl Debug for ReconcileReport
Source§impl Default for ReconcileReport
impl Default for ReconcileReport
Source§fn default() -> ReconcileReport
fn default() -> ReconcileReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReconcileReport
impl PartialEq for ReconcileReport
impl Eq for ReconcileReport
impl StructuralPartialEq for ReconcileReport
Auto Trait Implementations§
impl Freeze for ReconcileReport
impl RefUnwindSafe for ReconcileReport
impl Send for ReconcileReport
impl Sync for ReconcileReport
impl Unpin for ReconcileReport
impl UnwindSafe for ReconcileReport
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