pub enum LogParsingError {
    NoValidParser(SiemLog),
    ParserError(SiemLogString),
    NotImplemented(SiemLog),
    FormatError(SiemLogString),
}
Expand description

Error at parsing a log

Variants

NoValidParser(SiemLog)

The parser can’t be used with this log

ParserError(SiemLogString)

The log is for this parser but there is a bug in the code

NotImplemented(SiemLog)

The log is for this parser but the submodule has not been implemented.

FormatError(SiemLogString)

The log has change format the parser cant process it.

Trait Implementations

Formats the value using the given formatter. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.