#[repr(C)]pub enum SendStatus {
Unknown = 0,
Sent = 1,
Sending = 2,
SendingDelayedNetworkError = 3,
FailedInvalidMessage = 4,
FailedAuthenticationError = 5,
FailedPermissionsError = 6,
FailedRetriesExceeded = 7,
LocalOnly = 8,
}
Variants§
Unknown = 0
Sent = 1
Sending = 2
SendingDelayedNetworkError = 3
FailedInvalidMessage = 4
FailedAuthenticationError = 5
FailedPermissionsError = 6
FailedRetriesExceeded = 7
LocalOnly = 8
Auto Trait Implementations§
impl Freeze for SendStatus
impl RefUnwindSafe for SendStatus
impl Send for SendStatus
impl Sync for SendStatus
impl Unpin for SendStatus
impl UnwindSafe for SendStatus
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