pub struct ReplicationBatchResult {
pub plans: Vec<ReplicationPlan>,
pub stats: ReplicationBatchStats,
}Expand description
Ordered plans and aggregate statistics produced for a viewer batch.
Fields§
§plans: Vec<ReplicationPlan>One plan per input viewer, retaining input order.
stats: ReplicationBatchStatsAggregate work signals for the batch.
Trait Implementations§
Source§impl Clone for ReplicationBatchResult
impl Clone for ReplicationBatchResult
Source§fn clone(&self) -> ReplicationBatchResult
fn clone(&self) -> ReplicationBatchResult
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 ReplicationBatchResult
impl Debug for ReplicationBatchResult
Source§impl Default for ReplicationBatchResult
impl Default for ReplicationBatchResult
Source§fn default() -> ReplicationBatchResult
fn default() -> ReplicationBatchResult
Returns the “default value” for a type. Read more
impl Eq for ReplicationBatchResult
Source§impl PartialEq for ReplicationBatchResult
impl PartialEq for ReplicationBatchResult
impl StructuralPartialEq for ReplicationBatchResult
Auto Trait Implementations§
impl Freeze for ReplicationBatchResult
impl RefUnwindSafe for ReplicationBatchResult
impl Send for ReplicationBatchResult
impl Sync for ReplicationBatchResult
impl Unpin for ReplicationBatchResult
impl UnsafeUnpin for ReplicationBatchResult
impl UnwindSafe for ReplicationBatchResult
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