blob: 692531117661a4043cf5bbbd17fafacfe4e12aae [file] [log] [blame]
// Copyright 2022 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
use std::str::FromStr;
use crate::Error;
#[derive(Debug)]
pub enum System {
Linux,
MacOs,
Windows,
}
impl FromStr for System {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"linux" => Ok(Self::Linux),
"macos" => Ok(Self::MacOs),
"windows" => Ok(Self::Windows),
_ => Err(Error::GenericErrorPlaceholder),
}
}
}
#[derive(Debug)]
pub enum Architecture {
X64,
Arm64,
}
impl FromStr for Architecture {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"x64" => Ok(Self::X64),
"arm64" => Ok(Self::Arm64),
_ => Err(Error::GenericErrorPlaceholder),
}
}
}