#[repr(u8)]pub enum LogBackend {
Android = 0,
Stderr = 1,
Null = 2,
}Expand description
Available logging backends.
Variants§
Trait Implementations§
Source§impl Clone for LogBackend
impl Clone for LogBackend
Source§fn clone(&self) -> LogBackend
fn clone(&self) -> LogBackend
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LogBackend
Source§impl Debug for LogBackend
impl Debug for LogBackend
impl Eq for LogBackend
Source§impl PartialEq for LogBackend
impl PartialEq for LogBackend
Source§fn eq(&self, other: &LogBackend) -> bool
fn eq(&self, other: &LogBackend) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogBackend
Auto Trait Implementations§
impl Freeze for LogBackend
impl RefUnwindSafe for LogBackend
impl Send for LogBackend
impl Sync for LogBackend
impl Unpin for LogBackend
impl UnsafeUnpin for LogBackend
impl UnwindSafe for LogBackend
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