sl4f_lib/traceutil/
types.rs

1// Copyright 2019 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 Traceutil commands.
6pub enum TraceutilMethod {
7    GetTraceFile,
8}
9
10impl std::str::FromStr for TraceutilMethod {
11    type Err = anyhow::Error;
12
13    fn from_str(method: &str) -> Result<Self, Self::Err> {
14        match method {
15            "GetTraceFile" => Ok(TraceutilMethod::GetTraceFile),
16            _ => return Err(format_err!("invalid Traceutil Facade method: {}", method)),
17        }
18    }
19}