Enum roblox::enumeration::AnalyticsLogLevel [−][src]
pub enum AnalyticsLogLevel { Trace, Debug, Information, Warning, Error, Fatal, }
Expand description
The AnalyticsLogLevel enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::AnalyticsLogLevel::Trace.name(), "Trace");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::AnalyticsLogLevel::Trace.value(), Trace);
Getting all EnumItems:
let enum_items = roblox::enums::AnalyticsLogLevel::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AnalyticsLogLevel
impl Send for AnalyticsLogLevel
impl Sync for AnalyticsLogLevel
impl Unpin for AnalyticsLogLevel
impl UnwindSafe for AnalyticsLogLevel
Blanket Implementations
Mutably borrows from an owned value. Read more