// This file is @generated by prost-build.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum EEnumYsonStorageType {
EystString = 0,
EystInt = 1,
}
impl EEnumYsonStorageType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::EystString => "EYST_STRING",
Self::EystInt => "EYST_INT",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"EYST_STRING" => Some(Self::EystString),
"EYST_INT" => Some(Self::EystInt),
_ => None,
}
}
}