Enum LogEvent
#[non_exhaustive]pub enum LogEvent {
Show 18 variants
General,
Setup,
Shader,
ParseStyle,
ParseTile,
Render,
Style,
Database,
HttpRequest,
Sprite,
Image,
OpenGl,
Jni,
Android,
Crash,
Glyph,
Timing,
Unknown(u32),
}Expand description
Category for a MapLibre Native log record.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
General
Setup
Shader
ParseStyle
ParseTile
Render
Style
Database
HttpRequest
Sprite
Image
OpenGl
Jni
Android
Crash
Glyph
Timing
Unknown(u32)
Implementations§
Trait Implementations§
impl Copy for LogEvent
impl Eq for LogEvent
impl StructuralPartialEq for LogEvent
Auto Trait Implementations§
impl Freeze for LogEvent
impl RefUnwindSafe for LogEvent
impl Send for LogEvent
impl Sync for LogEvent
impl Unpin for LogEvent
impl UnsafeUnpin for LogEvent
impl UnwindSafe for LogEvent
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