sl4f_lib/device/
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 Device commands.
6pub enum DeviceMethod {
7    GetDeviceName,
8    GetProduct,
9    GetVersion,
10}
11
12impl std::str::FromStr for DeviceMethod {
13    type Err = anyhow::Error;
14
15    fn from_str(method: &str) -> Result<Self, Self::Err> {
16        match method {
17            "GetDeviceName" => Ok(DeviceMethod::GetDeviceName),
18            "GetProduct" => Ok(DeviceMethod::GetProduct),
19            "GetVersion" => Ok(DeviceMethod::GetVersion),
20            _ => return Err(format_err!("invalid Device Facade method: {}", method)),
21        }
22    }
23}