pub enum QueueID {
Working,
Deliver,
Delegated,
Deferred,
Dead,
Quarantine {
name: String,
},
}Expand description
identifiers for all mail queues.
Variants§
Working
Postq.
Deliver
1st attempt to deliver.
Delegated
the message has been delegated.
Deferred
1st delivery attempt failed.
Dead
Too many attempts failed.
Quarantine
Trait Implementations§
impl Eq for QueueID
impl StructuralEq for QueueID
impl StructuralPartialEq for QueueID
Auto Trait Implementations§
impl RefUnwindSafe for QueueID
impl Send for QueueID
impl Sync for QueueID
impl Unpin for QueueID
impl UnwindSafe for QueueID
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Variant for Twhere
T: Any + Clone + SendSync,
impl<T> Variant for Twhere T: Any + Clone + SendSync,
§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert this [
Variant] trait object to &mut dyn Any.§fn as_boxed_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn as_boxed_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert this [
Variant] trait object to Box<dyn Any>.§fn clone_object(&self) -> Box<dyn Variant + 'static, Global>
fn clone_object(&self) -> Box<dyn Variant + 'static, Global>
Clone this [
Variant] trait object.