pub enum PickupEventType {
ConfigOverrideWarning {
file_path: String,
line_number: u32,
parameter_name: String,
parameter_value: String,
},
MailPickup {
queue_id: String,
uid: u32,
sender: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for PickupEventType
impl Clone for PickupEventType
Source§fn clone(&self) -> PickupEventType
fn clone(&self) -> PickupEventType
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 PickupEventType
impl Debug for PickupEventType
Source§impl<'de> Deserialize<'de> for PickupEventType
impl<'de> Deserialize<'de> for PickupEventType
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 PartialEq for PickupEventType
impl PartialEq for PickupEventType
Source§impl Serialize for PickupEventType
impl Serialize for PickupEventType
impl StructuralPartialEq for PickupEventType
Auto Trait Implementations§
impl Freeze for PickupEventType
impl RefUnwindSafe for PickupEventType
impl Send for PickupEventType
impl Sync for PickupEventType
impl Unpin for PickupEventType
impl UnwindSafe for PickupEventType
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