pub enum Update {
Sample(Arc<TimeSample>),
Status(Status),
}Expand description
A time update generated by an |UpdateAlgorithm|.
Variants§
Sample(Arc<TimeSample>)
A new TimeSample. The Arc may be removed once fidl tables support clone.
Status(Status)
A new Status.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Update
Auto Trait Implementations§
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnsafeUnpin for Update
impl UnwindSafe for Update
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