#[repr(u32)]pub enum Buffer {
Default = 2_147_483_647,
Main = 0,
Crash = 4,
Stats = 5,
Events = 2,
Security = 6,
System = 3,
Kernel = 7,
Radio = 1,
}
Expand description
Variants§
Default = 2_147_483_647
Let the logging function choose the best log target.
Main = 0
The main log buffer.
This is the only log buffer available to apps.
Crash = 4
The crash log buffer.
Stats = 5
The statistics log buffer.
Events = 2
The event log buffer.
Security = 6
The security log buffer.
System = 3
The system log buffer.
Kernel = 7
The kernel log buffer.
Radio = 1
The radio log buffer.
Trait Implementations§
impl Copy for Buffer
impl Eq for Buffer
impl StructuralPartialEq for Buffer
Auto Trait Implementations§
impl Freeze for Buffer
impl RefUnwindSafe for Buffer
impl Send for Buffer
impl Sync for Buffer
impl Unpin for Buffer
impl UnwindSafe for Buffer
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