sl4f_lib/factory_reset/
types.rs

1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// Enum for supported Factory reset commands.
6pub enum FactoryResetMethod {
7    FactoryReset,
8}
9
10impl std::str::FromStr for FactoryResetMethod {
11    type Err = anyhow::Error;
12
13    fn from_str(method: &str) -> Result<Self, Self::Err> {
14        match method {
15            "FactoryReset" => Ok(FactoryResetMethod::FactoryReset),
16            _ => return Err(format_err!("invalid Factory Reset Facade method: {}", method)),
17        }
18    }
19}