pub struct BaseLogInfo {
pub timestamp: DateTime<Utc>,
pub hostname: String,
pub component: String,
pub process_id: u32,
pub log_level: PostfixLogLevel,
pub message: String,
pub raw_message: String,
}Expand description
基础日志信息
Fields§
§timestamp: DateTime<Utc>§hostname: String§component: String§process_id: u32§log_level: PostfixLogLevel§message: String§raw_message: StringTrait Implementations§
Source§impl Clone for BaseLogInfo
impl Clone for BaseLogInfo
Source§fn clone(&self) -> BaseLogInfo
fn clone(&self) -> BaseLogInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BaseLogInfo
impl Debug for BaseLogInfo
Source§impl PartialEq for BaseLogInfo
impl PartialEq for BaseLogInfo
impl StructuralPartialEq for BaseLogInfo
Auto Trait Implementations§
impl Freeze for BaseLogInfo
impl RefUnwindSafe for BaseLogInfo
impl Send for BaseLogInfo
impl Sync for BaseLogInfo
impl Unpin for BaseLogInfo
impl UnwindSafe for BaseLogInfo
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