pub enum LogLine {
Info(String),
Warning(WarningLine),
Error(ErrorLine),
NoFilesFound(NoFilesFoundLine),
UnknownArgument(UnknownArgumentLine),
}Expand description
A single parsed log line from the BSPC child process.
Variants§
Info(String)
Warning(WarningLine)
Error(ErrorLine)
NoFilesFound(NoFilesFoundLine)
UnknownArgument(UnknownArgumentLine)
Implementations§
Trait Implementations§
impl Eq for LogLine
Source§impl Ord for LogLine
impl Ord for LogLine
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for LogLine
impl PartialOrd for LogLine
impl StructuralPartialEq for LogLine
Auto Trait Implementations§
impl Freeze for LogLine
impl RefUnwindSafe for LogLine
impl Send for LogLine
impl Sync for LogLine
impl Unpin for LogLine
impl UnsafeUnpin for LogLine
impl UnwindSafe for LogLine
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