pub struct DeliveryOptions {
pub e: Option<Vec<DeliveryOptionsE>>,
pub m: Option<i32>,
}Fields§
§e: Option<Vec<DeliveryOptionsE>>Returns an array of device information.
m: Option<i32>Email option is enabled or not.
Trait Implementations§
Source§impl Clone for DeliveryOptions
impl Clone for DeliveryOptions
Source§fn clone(&self) -> DeliveryOptions
fn clone(&self) -> DeliveryOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 DeliveryOptions
impl Debug for DeliveryOptions
Source§impl Default for DeliveryOptions
impl Default for DeliveryOptions
Source§impl<'de> Deserialize<'de> for DeliveryOptions
impl<'de> Deserialize<'de> for DeliveryOptions
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
Source§impl PartialEq for DeliveryOptions
impl PartialEq for DeliveryOptions
impl StructuralPartialEq for DeliveryOptions
Auto Trait Implementations§
impl Freeze for DeliveryOptions
impl RefUnwindSafe for DeliveryOptions
impl Send for DeliveryOptions
impl Sync for DeliveryOptions
impl Unpin for DeliveryOptions
impl UnsafeUnpin for DeliveryOptions
impl UnwindSafe for DeliveryOptions
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