pub struct WatchBatch {
pub events: Vec<ChangeEvent>,
pub dropped: u64,
pub cancelled: bool,
}Expand description
One bounded watch poll with explicit overflow evidence.
Fields§
§events: Vec<ChangeEvent>Drained events in logical order.
dropped: u64Lifetime events dropped because this consumer was slow.
cancelled: boolWhether the watch has been cancelled.
Trait Implementations§
Source§impl Clone for WatchBatch
impl Clone for WatchBatch
Source§fn clone(&self) -> WatchBatch
fn clone(&self) -> WatchBatch
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 WatchBatch
impl Debug for WatchBatch
impl Eq for WatchBatch
Source§impl PartialEq for WatchBatch
impl PartialEq for WatchBatch
impl StructuralPartialEq for WatchBatch
Auto Trait Implementations§
impl Freeze for WatchBatch
impl RefUnwindSafe for WatchBatch
impl Send for WatchBatch
impl Sync for WatchBatch
impl Unpin for WatchBatch
impl UnsafeUnpin for WatchBatch
impl UnwindSafe for WatchBatch
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.