blob: 6c0b26c426e5b024ab8c30422e12cbb5c15d4b1a [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use anyhow::format_err;
pub enum FlatlandExampleMethod {
Start,
Stop,
}
impl std::str::FromStr for FlatlandExampleMethod {
type Err = anyhow::Error;
fn from_str(method: &str) -> Result<Self, Self::Err> {
match method {
"Start" => Ok(Self::Start),
"Stop" => Ok(Self::Stop),
_ => return Err(format_err!("Invalid FlatlandExample Facade SL4F method: {}", method)),
}
}
}