pub enum AndroidLogTag {
Default,
LoggerName,
Custom(String),
}
Available on Android and crate feature
native
and crate feature android-ndk
only.Expand description
Variants§
Default
The default tag determined by Android NDK.
LoggerName
The name of the spdlog-rs
logger that generated the log.
Custom(String)
A custom string.
Auto Trait Implementations§
impl Freeze for AndroidLogTag
impl RefUnwindSafe for AndroidLogTag
impl Send for AndroidLogTag
impl Sync for AndroidLogTag
impl Unpin for AndroidLogTag
impl UnwindSafe for AndroidLogTag
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