pub struct ParseStringOptions {
    pub days_first: Option<bool>,
    pub parse_attachments: bool,
    pub debug: bool,
}Fields§
§days_first: Option<bool>Specify if the dates in your log file start with a day (true) or a month
(false).
Manually specifying this may improve performance.
parse_attachments: boolSpecify if attachments should be parsed.
If set to true, messages containing attachments will include an
attachment property.
debug: boolEnable debug output during parsing.
If set to true, detailed information about the parsing process will be
printed to stdout, including regex matches, message processing steps, and
statistics.
Trait Implementations§
Source§impl Debug for ParseStringOptions
 
impl Debug for ParseStringOptions
Source§impl Default for ParseStringOptions
 
impl Default for ParseStringOptions
Source§fn default() -> ParseStringOptions
 
fn default() -> ParseStringOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParseStringOptions
impl RefUnwindSafe for ParseStringOptions
impl Send for ParseStringOptions
impl Sync for ParseStringOptions
impl Unpin for ParseStringOptions
impl UnwindSafe for ParseStringOptions
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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more