pub struct NewParseInstallation {Show 15 fields
pub device_type: 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 parse_version: Option<String>,
pub badge: Option<i64>,
pub time_zone: Option<String>,
pub channels: Option<Vec<String>>,
pub locale_identifier: Option<String>,
pub push_type: Option<String>,
pub gcm_sender_id: Option<String>,
pub acl: Option<ParseACL>,
pub custom_fields: Option<HashMap<String, Value>>,
}
Expand description
Represents a new Parse Installation to be created.
Fields§
§device_type: DeviceType
§device_token: Option<String>
§installation_id: Option<String>
§app_name: Option<String>
§app_version: Option<String>
§app_identifier: Option<String>
§parse_version: Option<String>
§badge: Option<i64>
§time_zone: Option<String>
§channels: Option<Vec<String>>
§locale_identifier: Option<String>
§push_type: Option<String>
§gcm_sender_id: Option<String>
§acl: Option<ParseACL>
§custom_fields: Option<HashMap<String, Value>>
Implementations§
Source§impl NewParseInstallation
impl NewParseInstallation
pub fn new(device_type: DeviceType) -> Self
Trait Implementations§
Source§impl Clone for NewParseInstallation
impl Clone for NewParseInstallation
Source§fn clone(&self) -> NewParseInstallation
fn clone(&self) -> NewParseInstallation
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 NewParseInstallation
impl Debug for NewParseInstallation
Source§impl Default for NewParseInstallation
impl Default for NewParseInstallation
Source§fn default() -> NewParseInstallation
fn default() -> NewParseInstallation
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NewParseInstallation
impl RefUnwindSafe for NewParseInstallation
impl Send for NewParseInstallation
impl Sync for NewParseInstallation
impl Unpin for NewParseInstallation
impl UnwindSafe for NewParseInstallation
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