pub struct ProxymapEvent {
pub timestamp: String,
pub process_id: String,
pub event_type: ProxymapEventType,
}Expand description
Proxymap代理映射服务事件
记录Postfix proxymap服务的配置警告和映射操作
Fields§
§timestamp: String事件发生时间戳(原始字符串格式) 保持原始时间格式,如“Apr 08 17:54:42“
process_id: String进程ID(字符串格式) proxymap服务进程的标识符
event_type: ProxymapEventType事件类型(通常为配置覆盖警告)
Trait Implementations§
Source§impl Clone for ProxymapEvent
impl Clone for ProxymapEvent
Source§fn clone(&self) -> ProxymapEvent
fn clone(&self) -> ProxymapEvent
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 ProxymapEvent
impl Debug for ProxymapEvent
Source§impl<'de> Deserialize<'de> for ProxymapEvent
impl<'de> Deserialize<'de> for ProxymapEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ProxymapEvent
impl Display for ProxymapEvent
Source§impl PartialEq for ProxymapEvent
impl PartialEq for ProxymapEvent
Source§impl Serialize for ProxymapEvent
impl Serialize for ProxymapEvent
impl StructuralPartialEq for ProxymapEvent
Auto Trait Implementations§
impl Freeze for ProxymapEvent
impl RefUnwindSafe for ProxymapEvent
impl Send for ProxymapEvent
impl Sync for ProxymapEvent
impl Unpin for ProxymapEvent
impl UnwindSafe for ProxymapEvent
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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