Enum kumo_log_types::RecordType
source · pub enum RecordType {
Reception,
Delivery,
Bounce,
TransientFailure,
Expiration,
AdminBounce,
OOB,
Feedback,
Rejection,
AdminRebind,
Any,
}
Variants§
Reception
Recorded by a receiving listener
Delivery
Recorded by the delivery side, most likely as a result of attempting a delivery to a remote host
Bounce
TransientFailure
Expiration
Recorded when a message is expiring from the queue
AdminBounce
Administratively failed
OOB
Contains information about an OOB bounce
Feedback
Contains a feedback report
Rejection
SMTP Listener responded with a 4xx or 5xx
AdminRebind
Administratively rebound from one queue to another
Any
Special for matching anything in the logging config
Trait Implementations§
source§impl Clone for RecordType
impl Clone for RecordType
source§fn clone(&self) -> RecordType
fn clone(&self) -> RecordType
Returns a copy 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 RecordType
impl Debug for RecordType
source§impl<'de> Deserialize<'de> for RecordType
impl<'de> Deserialize<'de> for RecordType
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 Hash for RecordType
impl Hash for RecordType
source§impl Ord for RecordType
impl Ord for RecordType
source§fn cmp(&self, other: &RecordType) -> Ordering
fn cmp(&self, other: &RecordType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for RecordType
impl PartialEq for RecordType
source§impl PartialOrd for RecordType
impl PartialOrd for RecordType
source§impl Serialize for RecordType
impl Serialize for RecordType
impl Copy for RecordType
impl Eq for RecordType
impl StructuralPartialEq for RecordType
Auto Trait Implementations§
impl Freeze for RecordType
impl RefUnwindSafe for RecordType
impl Send for RecordType
impl Sync for RecordType
impl Unpin for RecordType
impl UnwindSafe for RecordType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.