#[repr(i32)]pub enum ProtoLogLevel {
ProtologLevelUndefined = 0,
ProtologLevelDebug = 1,
ProtologLevelVerbose = 2,
ProtologLevelInfo = 3,
ProtologLevelWarn = 4,
ProtologLevelError = 5,
ProtologLevelWtf = 6,
}
Variants§
ProtologLevelUndefined = 0
ProtologLevelDebug = 1
ProtologLevelVerbose = 2
ProtologLevelInfo = 3
ProtologLevelWarn = 4
ProtologLevelError = 5
ProtologLevelWtf = 6
Implementations§
Source§impl ProtoLogLevel
impl ProtoLogLevel
Source§impl ProtoLogLevel
impl ProtoLogLevel
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
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.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for ProtoLogLevel
impl Clone for ProtoLogLevel
Source§fn clone(&self) -> ProtoLogLevel
fn clone(&self) -> ProtoLogLevel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProtoLogLevel
impl Debug for ProtoLogLevel
Source§impl Default for ProtoLogLevel
impl Default for ProtoLogLevel
Source§fn default() -> ProtoLogLevel
fn default() -> ProtoLogLevel
Returns the “default value” for a type. Read more
Source§impl From<ProtoLogLevel> for i32
impl From<ProtoLogLevel> for i32
Source§fn from(value: ProtoLogLevel) -> i32
fn from(value: ProtoLogLevel) -> i32
Converts to this type from the input type.
Source§impl Hash for ProtoLogLevel
impl Hash for ProtoLogLevel
Source§impl Ord for ProtoLogLevel
impl Ord for ProtoLogLevel
Source§fn cmp(&self, other: &ProtoLogLevel) -> Ordering
fn cmp(&self, other: &ProtoLogLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProtoLogLevel
impl PartialEq for ProtoLogLevel
Source§impl PartialOrd for ProtoLogLevel
impl PartialOrd for ProtoLogLevel
Source§impl TryFrom<i32> for ProtoLogLevel
impl TryFrom<i32> for ProtoLogLevel
Source§type Error = DecodeError
type Error = DecodeError
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<ProtoLogLevel, DecodeError>
fn try_from(value: i32) -> Result<ProtoLogLevel, DecodeError>
Performs the conversion.
impl Copy for ProtoLogLevel
impl Eq for ProtoLogLevel
impl StructuralPartialEq for ProtoLogLevel
Auto Trait Implementations§
impl Freeze for ProtoLogLevel
impl RefUnwindSafe for ProtoLogLevel
impl Send for ProtoLogLevel
impl Sync for ProtoLogLevel
impl Unpin for ProtoLogLevel
impl UnwindSafe for ProtoLogLevel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more