pub enum FactoryResetCountdownRequest {
Watch {
responder: FactoryResetCountdownWatchResponder,
},
}
Expand description
Protocol to watch for changes when a factory reset countdown is started or cancelled. An immediate factory reset does not start a countdown.
Variants§
Watch
Hanging get that returns when a factory reset is scheduled or a scheduled factory reset is cancelled. Will return immediately on first call per connection and then on change after that.
Fields
§
responder: FactoryResetCountdownWatchResponder
Implementations§
Source§impl FactoryResetCountdownRequest
impl FactoryResetCountdownRequest
pub fn into_watch(self) -> Option<FactoryResetCountdownWatchResponder>
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 FactoryResetCountdownRequest
impl !RefUnwindSafe for FactoryResetCountdownRequest
impl Send for FactoryResetCountdownRequest
impl Sync for FactoryResetCountdownRequest
impl Unpin for FactoryResetCountdownRequest
impl !UnwindSafe for FactoryResetCountdownRequest
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