pub struct ApnsFcmOptions {
pub analytics_label: Option<String>,
pub image: Option<String>,
}Expand description
Options for features provided by the FCM SDK for iOS.
This type is not used in any activity, and only used as part of another schema.
Fields§
§analytics_label: Option<String>Label associated with the message’s analytics data.
image: Option<String>Contains the URL of an image that is going to be displayed in a notification. If present, it will override google.firebase.fcm.v1.Notification.image.
Trait Implementations§
Source§impl Clone for ApnsFcmOptions
impl Clone for ApnsFcmOptions
Source§fn clone(&self) -> ApnsFcmOptions
fn clone(&self) -> ApnsFcmOptions
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 ApnsFcmOptions
impl Debug for ApnsFcmOptions
Source§impl Default for ApnsFcmOptions
impl Default for ApnsFcmOptions
Source§fn default() -> ApnsFcmOptions
fn default() -> ApnsFcmOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApnsFcmOptions
impl<'de> Deserialize<'de> for ApnsFcmOptions
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 Serialize for ApnsFcmOptions
impl Serialize for ApnsFcmOptions
impl Part for ApnsFcmOptions
Auto Trait Implementations§
impl Freeze for ApnsFcmOptions
impl RefUnwindSafe for ApnsFcmOptions
impl Send for ApnsFcmOptions
impl Sync for ApnsFcmOptions
impl Unpin for ApnsFcmOptions
impl UnwindSafe for ApnsFcmOptions
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