sl4f_lib/logging/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
5pub enum LoggingMethod {
6 LogErr,
7 LogInfo,
8 LogWarn,
9 LoggingMethodUndefined,
10}
11
12impl LoggingMethod {
13 pub fn from_str(method: &String) -> LoggingMethod {
14 match method.as_ref() {
15 "LogErr" => LoggingMethod::LogErr,
16 "LogInfo" => LoggingMethod::LogInfo,
17 "LogWarn" => LoggingMethod::LogWarn,
18 _ => LoggingMethod::LoggingMethodUndefined,
19 }
20 }
21}