pub struct ReplicationBatchView<'a> {
pub plans: &'a [ReplicationPlan],
pub stats: ReplicationBatchStats,
}Expand description
Borrowed ordered plans produced from reusable batch storage.
Fields§
§plans: &'a [ReplicationPlan]One plan per input viewer, retaining input order.
stats: ReplicationBatchStatsAggregate work signals for the active plans.
Trait Implementations§
Source§impl<'a> Clone for ReplicationBatchView<'a>
impl<'a> Clone for ReplicationBatchView<'a>
Source§fn clone(&self) -> ReplicationBatchView<'a>
fn clone(&self) -> ReplicationBatchView<'a>
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 moreimpl<'a> Copy for ReplicationBatchView<'a>
Source§impl<'a> Debug for ReplicationBatchView<'a>
impl<'a> Debug for ReplicationBatchView<'a>
impl<'a> Eq for ReplicationBatchView<'a>
Source§impl<'a> PartialEq for ReplicationBatchView<'a>
impl<'a> PartialEq for ReplicationBatchView<'a>
impl<'a> StructuralPartialEq for ReplicationBatchView<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReplicationBatchView<'a>
impl<'a> RefUnwindSafe for ReplicationBatchView<'a>
impl<'a> Send for ReplicationBatchView<'a>
impl<'a> Sync for ReplicationBatchView<'a>
impl<'a> Unpin for ReplicationBatchView<'a>
impl<'a> UnsafeUnpin for ReplicationBatchView<'a>
impl<'a> UnwindSafe for ReplicationBatchView<'a>
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