pub struct ErrorParser;
Expand description
ERROR组件解析器
解析Postfix error组件产生的各种错误日志 按照真实数据频率优化解析顺序
Implementations§
Source§impl ErrorParser
impl ErrorParser
Trait Implementations§
Source§impl ComponentParser for ErrorParser
impl ComponentParser for ErrorParser
Auto Trait Implementations§
impl Freeze for ErrorParser
impl RefUnwindSafe for ErrorParser
impl Send for ErrorParser
impl Sync for ErrorParser
impl Unpin for ErrorParser
impl UnwindSafe for ErrorParser
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