pub enum ParsedLog {
Invoke(ParsedInvokeLog),
Success(ParsedSuccessLog),
Failed(ParsedFailedLog),
Log(ParsedProgramLog),
Data(ParsedDataLog),
Return(ParsedReturnLog),
Cu(ParsedCuLog),
Other(ParsedOtherLog),
}Variants§
Invoke(ParsedInvokeLog)
Success(ParsedSuccessLog)
Failed(ParsedFailedLog)
Log(ParsedProgramLog)
Data(ParsedDataLog)
Return(ParsedReturnLog)
Cu(ParsedCuLog)
Other(ParsedOtherLog)
Implementations§
Trait Implementations§
Source§impl From<ParsedCuLog> for ParsedLog
impl From<ParsedCuLog> for ParsedLog
Source§fn from(value: ParsedCuLog) -> Self
fn from(value: ParsedCuLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedDataLog> for ParsedLog
impl From<ParsedDataLog> for ParsedLog
Source§fn from(value: ParsedDataLog) -> Self
fn from(value: ParsedDataLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedFailedLog> for ParsedLog
impl From<ParsedFailedLog> for ParsedLog
Source§fn from(value: ParsedFailedLog) -> Self
fn from(value: ParsedFailedLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedInvokeLog> for ParsedLog
impl From<ParsedInvokeLog> for ParsedLog
Source§fn from(value: ParsedInvokeLog) -> Self
fn from(value: ParsedInvokeLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedOtherLog> for ParsedLog
impl From<ParsedOtherLog> for ParsedLog
Source§fn from(value: ParsedOtherLog) -> Self
fn from(value: ParsedOtherLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedProgramLog> for ParsedLog
impl From<ParsedProgramLog> for ParsedLog
Source§fn from(value: ParsedProgramLog) -> Self
fn from(value: ParsedProgramLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedReturnLog> for ParsedLog
impl From<ParsedReturnLog> for ParsedLog
Source§fn from(value: ParsedReturnLog) -> Self
fn from(value: ParsedReturnLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedSuccessLog> for ParsedLog
impl From<ParsedSuccessLog> for ParsedLog
Source§fn from(value: ParsedSuccessLog) -> Self
fn from(value: ParsedSuccessLog) -> Self
Converts to this type from the input type.
impl Eq for ParsedLog
impl StructuralPartialEq for ParsedLog
Auto Trait Implementations§
impl Freeze for ParsedLog
impl RefUnwindSafe for ParsedLog
impl Send for ParsedLog
impl Sync for ParsedLog
impl Unpin for ParsedLog
impl UnwindSafe for ParsedLog
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