pub enum MailOutboxStatusVariant {
Pending,
Processing,
Retry,
Sent,
Failed,
}Expand description
Generated by sea-orm-macros
Variants§
Pending
Generated by sea-orm-macros
Processing
Generated by sea-orm-macros
Retry
Generated by sea-orm-macros
Sent
Generated by sea-orm-macros
Failed
Generated by sea-orm-macros
Trait Implementations§
Source§impl Clone for MailOutboxStatusVariant
impl Clone for MailOutboxStatusVariant
Source§fn clone(&self) -> MailOutboxStatusVariant
fn clone(&self) -> MailOutboxStatusVariant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MailOutboxStatusVariant
impl Debug for MailOutboxStatusVariant
Source§impl Iden for MailOutboxStatusVariant
impl Iden for MailOutboxStatusVariant
Source§impl IntoEnumIterator for MailOutboxStatusVariant
impl IntoEnumIterator for MailOutboxStatusVariant
Source§impl PartialEq for MailOutboxStatusVariant
impl PartialEq for MailOutboxStatusVariant
Source§fn eq(&self, other: &MailOutboxStatusVariant) -> bool
fn eq(&self, other: &MailOutboxStatusVariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MailOutboxStatusVariant
impl StructuralPartialEq for MailOutboxStatusVariant
Auto Trait Implementations§
impl Freeze for MailOutboxStatusVariant
impl RefUnwindSafe for MailOutboxStatusVariant
impl Send for MailOutboxStatusVariant
impl Sync for MailOutboxStatusVariant
impl Unpin for MailOutboxStatusVariant
impl UnsafeUnpin for MailOutboxStatusVariant
impl UnwindSafe for MailOutboxStatusVariant
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,
§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
Checks if this value is equivalent to the given key. Read more
§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.§impl<I> IdenList for Iwhere
I: IntoIden,
impl<I> IdenList for Iwhere
I: IntoIden,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoColumnRef for Twhere
T: Into<ColumnRef>,
impl<T> IntoColumnRef for Twhere
T: Into<ColumnRef>,
fn into_column_ref(self) -> ColumnRef
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§impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
fn into_index_column(self) -> IndexColumn
§impl<T> IntoTableRef for Twhere
T: Into<TableRef>,
impl<T> IntoTableRef for Twhere
T: Into<TableRef>,
fn into_table_ref(self) -> TableRef
§impl<T> IntoTypeRef for Twhere
T: Into<TypeRef>,
impl<T> IntoTypeRef for Twhere
T: Into<TypeRef>,
fn into_type_ref(self) -> TypeRef
§impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
§fn into_2_parts(self) -> (Option<DynIden>, DynIden)
fn into_2_parts(self) -> (Option<DynIden>, DynIden)
Represent a maybe-qualified name as a
(foo?, bar) tuple.§impl<T> MaybeQualifiedTwice for Twhere
T: MaybeQualifiedOnce,
impl<T> MaybeQualifiedTwice for Twhere
T: MaybeQualifiedOnce,
§fn into_3_parts(self) -> (Option<(Option<DynIden>, DynIden)>, DynIden)
fn into_3_parts(self) -> (Option<(Option<DynIden>, DynIden)>, DynIden)
Represent a maybe-qualified name as a
(foo?, bar?, baz) tuple. Read more