pub enum DeliveryAuthorizationState {
Unavailable,
Pending,
Active,
Refreshing,
NeedsAuth,
Revoking,
Disabled,
}Variants§
Trait Implementations§
Source§impl Clone for DeliveryAuthorizationState
impl Clone for DeliveryAuthorizationState
Source§fn clone(&self) -> DeliveryAuthorizationState
fn clone(&self) -> DeliveryAuthorizationState
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 moreimpl Copy for DeliveryAuthorizationState
Source§impl Debug for DeliveryAuthorizationState
impl Debug for DeliveryAuthorizationState
Source§impl<'de> Deserialize<'de> for DeliveryAuthorizationState
impl<'de> Deserialize<'de> for DeliveryAuthorizationState
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
impl Eq for DeliveryAuthorizationState
impl StructuralPartialEq for DeliveryAuthorizationState
Auto Trait Implementations§
impl Freeze for DeliveryAuthorizationState
impl RefUnwindSafe for DeliveryAuthorizationState
impl Send for DeliveryAuthorizationState
impl Sync for DeliveryAuthorizationState
impl Unpin for DeliveryAuthorizationState
impl UnsafeUnpin for DeliveryAuthorizationState
impl UnwindSafe for DeliveryAuthorizationState
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