pub struct IosNotificationSettings {
pub bundle_i_d: String,
pub app_name: String,
pub publisher: String,
pub enabled: bool,
pub show_in_notification_center: bool,
pub show_on_lock_screen: bool,
pub alert_type: IosNotificationAlertType,
pub badges_enabled: bool,
pub sounds_enabled: bool,
}
Fields§
§bundle_i_d: String
§app_name: String
§publisher: String
§enabled: bool
§show_in_notification_center: bool
§show_on_lock_screen: bool
§alert_type: IosNotificationAlertType
§badges_enabled: bool
§sounds_enabled: bool
Trait Implementations§
Source§impl Clone for IosNotificationSettings
impl Clone for IosNotificationSettings
Source§fn clone(&self) -> IosNotificationSettings
fn clone(&self) -> IosNotificationSettings
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 IosNotificationSettings
impl Debug for IosNotificationSettings
Source§impl<'de> Deserialize<'de> for IosNotificationSettings
impl<'de> Deserialize<'de> for IosNotificationSettings
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 IosNotificationSettings
impl PartialEq for IosNotificationSettings
Source§impl Serialize for IosNotificationSettings
impl Serialize for IosNotificationSettings
impl Eq for IosNotificationSettings
impl StructuralPartialEq for IosNotificationSettings
Auto Trait Implementations§
impl Freeze for IosNotificationSettings
impl RefUnwindSafe for IosNotificationSettings
impl Send for IosNotificationSettings
impl Sync for IosNotificationSettings
impl Unpin for IosNotificationSettings
impl UnwindSafe for IosNotificationSettings
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