pub struct UpdateParseInstallation {Show 14 fields
pub device_type: Option<DeviceType>,
pub device_token: Option<String>,
pub installation_id: Option<String>,
pub app_name: Option<String>,
pub app_version: Option<String>,
pub app_identifier: Option<String>,
pub time_zone: Option<String>,
pub locale_identifier: Option<String>,
pub badge: Option<i32>,
pub channels: Option<Vec<String>>,
pub push_type: Option<String>,
pub gcm_sender_id: Option<String>,
pub acl: Option<ParseACL>,
pub custom_fields: HashMap<String, Value>,
}
Expand description
Represents the fields that can be updated on an existing Parse Installation. All fields are optional, allowing for partial updates.
Fields§
§device_type: Option<DeviceType>
§device_token: Option<String>
§installation_id: Option<String>
§app_name: Option<String>
§app_version: Option<String>
§app_identifier: Option<String>
§time_zone: Option<String>
§locale_identifier: Option<String>
§badge: Option<i32>
§channels: Option<Vec<String>>
§push_type: Option<String>
§gcm_sender_id: Option<String>
§acl: Option<ParseACL>
§custom_fields: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl Clone for UpdateParseInstallation
impl Clone for UpdateParseInstallation
Source§fn clone(&self) -> UpdateParseInstallation
fn clone(&self) -> UpdateParseInstallation
Returns a copy 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 UpdateParseInstallation
impl Debug for UpdateParseInstallation
Source§impl Default for UpdateParseInstallation
impl Default for UpdateParseInstallation
Source§fn default() -> UpdateParseInstallation
fn default() -> UpdateParseInstallation
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateParseInstallation
impl PartialEq for UpdateParseInstallation
Source§impl Serialize for UpdateParseInstallation
impl Serialize for UpdateParseInstallation
impl StructuralPartialEq for UpdateParseInstallation
Auto Trait Implementations§
impl Freeze for UpdateParseInstallation
impl RefUnwindSafe for UpdateParseInstallation
impl Send for UpdateParseInstallation
impl Sync for UpdateParseInstallation
impl Unpin for UpdateParseInstallation
impl UnwindSafe for UpdateParseInstallation
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