pub enum NotifierRequest {
Notify {
control_handle: NotifierControlHandle,
},
}
Expand description
Notifier for [Listener
].
Variants§
Notify
Notify is called when the software update checker has completed its post-boot check (with or without error) and is not trying to reboot.
Fields
§
control_handle: NotifierControlHandle
Implementations§
Source§impl NotifierRequest
impl NotifierRequest
pub fn into_notify(self) -> Option<NotifierControlHandle>
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 NotifierRequest
impl !RefUnwindSafe for NotifierRequest
impl Send for NotifierRequest
impl Sync for NotifierRequest
impl Unpin for NotifierRequest
impl !UnwindSafe for NotifierRequest
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