pub enum Command {
PowerManagement,
Reference {
boot_reference: BootInstant,
utc_reference: UtcInstant,
responder: Sender<Result<()>>,
},
}
Variants§
PowerManagement
A power management command.
Reference
Report a reference point for the boot-timeline-to-utc-timeline affine transform.
Fields
§
boot_reference: BootInstant
Proposed boot reference instant.
§
utc_reference: UtcInstant
Proposed UTC instant corresponding to boot_reference
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Command
impl !RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl !UnwindSafe for Command
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