pub struct DeliveryAuthorization {
pub configured: bool,
pub enabled: bool,
pub state: DeliveryAuthorizationState,
pub actor_id: String,
}Fields§
§configured: bool§enabled: bool§state: DeliveryAuthorizationState§actor_id: StringTrait Implementations§
Source§impl Clone for DeliveryAuthorization
impl Clone for DeliveryAuthorization
Source§fn clone(&self) -> DeliveryAuthorization
fn clone(&self) -> DeliveryAuthorization
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 DeliveryAuthorization
impl Debug for DeliveryAuthorization
Source§impl<'de> Deserialize<'de> for DeliveryAuthorization
impl<'de> Deserialize<'de> for DeliveryAuthorization
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 DeliveryAuthorization
Source§impl PartialEq for DeliveryAuthorization
impl PartialEq for DeliveryAuthorization
Source§impl Serialize for DeliveryAuthorization
impl Serialize for DeliveryAuthorization
impl StructuralPartialEq for DeliveryAuthorization
Auto Trait Implementations§
impl Freeze for DeliveryAuthorization
impl RefUnwindSafe for DeliveryAuthorization
impl Send for DeliveryAuthorization
impl Sync for DeliveryAuthorization
impl Unpin for DeliveryAuthorization
impl UnsafeUnpin for DeliveryAuthorization
impl UnwindSafe for DeliveryAuthorization
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