pub(crate) struct MissedUpdate {
pub(crate) expected: usize,
pub(crate) current: usize,
}Expand description
Indicates that the Source has had multiple generation updates since the last time Waiter::update_generation
was called, depending on the usecase this may mean some data values were missed.
Fields§
§expected: usize§current: usizeAuto Trait Implementations§
impl Freeze for MissedUpdate
impl RefUnwindSafe for MissedUpdate
impl Send for MissedUpdate
impl Sync for MissedUpdate
impl Unpin for MissedUpdate
impl UnwindSafe for MissedUpdate
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