pub struct SmtpParser;
Expand description
SMTP投递解析器 基于517,428个真实生产数据分析,SMTP组件占2.6%的日志 解析顺序按照真实数据频率优化,所有字段详细解析
Implementations§
Source§impl SmtpParser
impl SmtpParser
Trait Implementations§
Source§impl ComponentParser for SmtpParser
impl ComponentParser for SmtpParser
Auto Trait Implementations§
impl Freeze for SmtpParser
impl RefUnwindSafe for SmtpParser
impl Send for SmtpParser
impl Sync for SmtpParser
impl Unpin for SmtpParser
impl UnwindSafe for SmtpParser
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