pub enum LogSource {
Stdout,
Stderr,
Output,
System,
}Expand description
Source tag on a captured log entry.
Variants§
Stdout
Captured from a session’s stdout (pipe mode).
Stderr
Captured from a session’s stderr (pipe mode).
Output
Captured from a session in pty mode (stdout + stderr merged at the kernel level inside the guest arrive as a single stream tagged output).
System
Synthetic system entry: lifecycle markers, runtime diagnostics, kernel console output.
Implementations§
Trait Implementations§
impl Copy for LogSource
Source§impl<'de> Deserialize<'de> for LogSource
impl<'de> Deserialize<'de> for LogSource
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 Eq for LogSource
impl StructuralPartialEq for LogSource
Auto Trait Implementations§
impl Freeze for LogSource
impl RefUnwindSafe for LogSource
impl Send for LogSource
impl Sync for LogSource
impl Unpin for LogSource
impl UnsafeUnpin for LogSource
impl UnwindSafe for LogSource
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