pub enum LogMode {
Text,
ArrayList,
Serialized,
EspCsiTool,
}Expand description
Supported CSI log formats exposed by esp-csi-cli-rs set-log-mode.
Variants§
Text
Verbose human-readable output with metadata.
ArrayList
Compact one-line text output per packet.
Serialized
Binary COBS-framed postcard output.
EspCsiTool
Hernandez-style 26-column CSV (compatible with the ESP32-CSI-Tool collector).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogMode
impl<'de> Deserialize<'de> for LogMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LogMode
Auto Trait Implementations§
impl Freeze for LogMode
impl RefUnwindSafe for LogMode
impl Send for LogMode
impl Sync for LogMode
impl Unpin for LogMode
impl UnsafeUnpin for LogMode
impl UnwindSafe for LogMode
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