pub struct GoogleFirebaseFcmDataV1beta1AndroidDeliveryData {
pub analytics_label: Option<String>,
pub app_id: Option<String>,
pub data: Option<GoogleFirebaseFcmDataV1beta1Data>,
pub date: Option<GoogleTypeDate>,
}Expand description
Message delivery data for a given date, app, and analytics label combination.
This type is not used in any activity, and only used as part of another schema.
Fields§
§analytics_label: Option<String>The analytics label associated with the messages sent. All messages sent without an analytics label will be grouped together in a single entry.
app_id: Option<String>The app ID to which the messages were sent.
data: Option<GoogleFirebaseFcmDataV1beta1Data>The data for the specified appId, date, and analyticsLabel.
date: Option<GoogleTypeDate>The date represented by this entry.
Trait Implementations§
Source§impl Clone for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl Clone for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
Source§fn clone(&self) -> GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
fn clone(&self) -> GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
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 Default for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl Default for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
Source§fn default() -> GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
fn default() -> GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl<'de> Deserialize<'de> for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
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 Part for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
Auto Trait Implementations§
impl Freeze for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl RefUnwindSafe for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl Send for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl Sync for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl Unpin for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
impl UnwindSafe for GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
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