pub enum MaintenanceRequest {
GetWritableUtcClock {
responder: MaintenanceGetWritableUtcClockResponder,
},
}
Expand description
Provides access to a UTC clock for the purposes of keeping it up-to-date with external time sources.
The client does not own the UTC clock, but is given a lease in order to keep the time synchronized.
Variants§
GetWritableUtcClock
Retrieve a UTC clock handle with write rights.
Fields
§
responder: MaintenanceGetWritableUtcClockResponder
Implementations§
Source§impl MaintenanceRequest
impl MaintenanceRequest
pub fn into_get_writable_utc_clock( self, ) -> Option<MaintenanceGetWritableUtcClockResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MaintenanceRequest
impl !RefUnwindSafe for MaintenanceRequest
impl Send for MaintenanceRequest
impl Sync for MaintenanceRequest
impl Unpin for MaintenanceRequest
impl !UnwindSafe for MaintenanceRequest
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