pub enum BootControlRequest {
SetBootComplete {
responder: BootControlSetBootCompleteResponder,
},
_UnknownMethod {
ordinal: u64,
control_handle: BootControlControlHandle,
method_type: MethodType,
},
}
Expand description
A service that processes notification about the system boot state.
Variants§
SetBootComplete
Notify the SAG that the system has booted. SAG will not suspend the hardware platform until this method is called at least once per boot.
Fields
§
responder: BootControlSetBootCompleteResponder
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
§
control_handle: BootControlControlHandle
§
method_type: MethodType
Implementations§
Source§impl BootControlRequest
impl BootControlRequest
pub fn into_set_boot_complete( self, ) -> Option<BootControlSetBootCompleteResponder>
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 BootControlRequest
impl !RefUnwindSafe for BootControlRequest
impl Send for BootControlRequest
impl Sync for BootControlRequest
impl Unpin for BootControlRequest
impl !UnwindSafe for BootControlRequest
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