pub enum DirectMessageDelivery {
Pending,
Sent,
Received,
Failed,
}Variants§
Trait Implementations§
Source§impl Clone for DirectMessageDelivery
impl Clone for DirectMessageDelivery
Source§fn clone(&self) -> DirectMessageDelivery
fn clone(&self) -> DirectMessageDelivery
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 DirectMessageDelivery
impl Debug for DirectMessageDelivery
impl Eq for DirectMessageDelivery
Source§impl PartialEq for DirectMessageDelivery
impl PartialEq for DirectMessageDelivery
Source§fn eq(&self, other: &DirectMessageDelivery) -> bool
fn eq(&self, other: &DirectMessageDelivery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DirectMessageDelivery
Auto Trait Implementations§
impl Freeze for DirectMessageDelivery
impl RefUnwindSafe for DirectMessageDelivery
impl Send for DirectMessageDelivery
impl Sync for DirectMessageDelivery
impl Unpin for DirectMessageDelivery
impl UnsafeUnpin for DirectMessageDelivery
impl UnwindSafe for DirectMessageDelivery
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