pub enum LastRebootInfoProviderRequest {
Get {
responder: LastRebootInfoProviderGetResponder,
},
}
Expand description
Get information about why a device last shutdown. The term reboot is used instead of shutdown since many developers phrase their questions about shutdowns in terms of reboots and most components are interested in knowing why the system just rebooted.
Variants§
Get
Fields
§
responder: LastRebootInfoProviderGetResponder
Implementations§
Source§impl LastRebootInfoProviderRequest
impl LastRebootInfoProviderRequest
pub fn into_get(self) -> Option<LastRebootInfoProviderGetResponder>
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 LastRebootInfoProviderRequest
impl !RefUnwindSafe for LastRebootInfoProviderRequest
impl Send for LastRebootInfoProviderRequest
impl Sync for LastRebootInfoProviderRequest
impl Unpin for LastRebootInfoProviderRequest
impl !UnwindSafe for LastRebootInfoProviderRequest
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