pub struct PlatformDeliveryData {
pub edge_web_push: Option<Box<DeliveryData>>,
pub chrome_web_push: Option<Box<DeliveryData>>,
pub firefox_web_push: Option<Box<DeliveryData>>,
pub safari_web_push: Option<Box<DeliveryData>>,
pub android: Option<Box<DeliveryData>>,
pub ios: Option<Box<DeliveryData>>,
pub sms: Option<Box<DeliveryData>>,
pub email: Option<Box<DeliveryData>>,
}
Expand description
PlatformDeliveryData : Hash of delivery statistics broken out by target device platform.
Fields
edge_web_push: Option<Box<DeliveryData>>
chrome_web_push: Option<Box<DeliveryData>>
firefox_web_push: Option<Box<DeliveryData>>
safari_web_push: Option<Box<DeliveryData>>
android: Option<Box<DeliveryData>>
ios: Option<Box<DeliveryData>>
sms: Option<Box<DeliveryData>>
email: Option<Box<DeliveryData>>
Implementations
sourceimpl PlatformDeliveryData
impl PlatformDeliveryData
sourcepub fn new() -> PlatformDeliveryData
pub fn new() -> PlatformDeliveryData
Hash of delivery statistics broken out by target device platform.
Trait Implementations
sourceimpl Clone for PlatformDeliveryData
impl Clone for PlatformDeliveryData
sourcefn clone(&self) -> PlatformDeliveryData
fn clone(&self) -> PlatformDeliveryData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PlatformDeliveryData
impl Debug for PlatformDeliveryData
sourceimpl Default for PlatformDeliveryData
impl Default for PlatformDeliveryData
sourcefn default() -> PlatformDeliveryData
fn default() -> PlatformDeliveryData
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PlatformDeliveryData
impl<'de> Deserialize<'de> for PlatformDeliveryData
sourcefn 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
sourceimpl PartialEq<PlatformDeliveryData> for PlatformDeliveryData
impl PartialEq<PlatformDeliveryData> for PlatformDeliveryData
sourcefn eq(&self, other: &PlatformDeliveryData) -> bool
fn eq(&self, other: &PlatformDeliveryData) -> bool
sourceimpl Serialize for PlatformDeliveryData
impl Serialize for PlatformDeliveryData
impl StructuralPartialEq for PlatformDeliveryData
Auto Trait Implementations
impl RefUnwindSafe for PlatformDeliveryData
impl Send for PlatformDeliveryData
impl Sync for PlatformDeliveryData
impl Unpin for PlatformDeliveryData
impl UnwindSafe for PlatformDeliveryData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more