pub struct FactoryResetHandler {
pub inspect_status: InputHandlerStatus,
/* private fields */
}
Expand description
A FactoryResetHandler
tracks the state of the consumer control buttons
and starts the factory reset process after appropriate timeouts.
Fields§
§inspect_status: InputHandlerStatus
The inventory of this handler’s Inspect status.
Implementations§
Source§impl FactoryResetHandler
impl FactoryResetHandler
Sourcepub fn new(
input_handlers_node: &Node,
metrics_logger: MetricsLogger,
) -> Rc<Self>
pub fn new( input_handlers_node: &Node, metrics_logger: MetricsLogger, ) -> Rc<Self>
Creates a new FactoryResetHandler
that listens for the reset button
and handles timing down and, ultimately, factory resetting the device.
Sourcepub fn handle_factory_reset_countdown_request_stream(
self: Rc<Self>,
stream: FactoryResetCountdownRequestStream,
) -> impl Future<Output = Result<(), Error>>
pub fn handle_factory_reset_countdown_request_stream( self: Rc<Self>, stream: FactoryResetCountdownRequestStream, ) -> impl Future<Output = Result<(), Error>>
Handles the request stream for FactoryResetCountdown
§Parameters
stream
: The FactoryResetCountdownRequestStream
to be handled.
Sourcepub fn handle_recovery_policy_device_request_stream(
self: Rc<Self>,
stream: DeviceRequestStream,
) -> impl Future<Output = Result<(), Error>>
pub fn handle_recovery_policy_device_request_stream( self: Rc<Self>, stream: DeviceRequestStream, ) -> impl Future<Output = Result<(), Error>>
Handles the request stream for fuchsia.recovery.policy.Device
§Parameters
stream
: The DeviceRequestStream
to be handled.
Trait Implementations§
Source§impl UnhandledInputHandler for FactoryResetHandler
impl UnhandledInputHandler for FactoryResetHandler
Source§fn handle_unhandled_input_event<'async_trait>(
self: Rc<Self>,
unhandled_input_event: UnhandledInputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
Self: 'async_trait,
fn handle_unhandled_input_event<'async_trait>(
self: Rc<Self>,
unhandled_input_event: UnhandledInputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
Self: 'async_trait,
This InputHandler doesn’t consume any input events. It just passes them on to the next handler in the pipeline. Since it doesn’t need exclusive access to the events this seems like the best way to avoid handlers further down the pipeline missing events that they need.
fn set_handler_healthy(self: Rc<Self>)
fn set_handler_unhealthy(self: Rc<Self>, msg: &str)
Auto Trait Implementations§
impl !Freeze for FactoryResetHandler
impl !RefUnwindSafe for FactoryResetHandler
impl Send for FactoryResetHandler
impl !Sync for FactoryResetHandler
impl Unpin for FactoryResetHandler
impl !UnwindSafe for FactoryResetHandler
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
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> InputHandler for Twhere
T: UnhandledInputHandler,
impl<T> InputHandler for Twhere
T: UnhandledInputHandler,
Source§fn handle_input_event<'async_trait>(
self: Rc<T>,
input_event: InputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
T: 'async_trait,
fn handle_input_event<'async_trait>(
self: Rc<T>,
input_event: InputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
T: 'async_trait,
fn set_handler_healthy(self: Rc<T>)
fn set_handler_unhealthy(self: Rc<T>, msg: &str)
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more