pub struct RetrievedParseInstallation {Show 18 fields
pub object_id: String,
pub created_at: String,
pub updated_at: String,
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: HashMap<String, Value>,
}
Expand description
Represents a Parse Installation object retrieved from the server.
Fields§
§object_id: String
§created_at: String
§updated_at: String
§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: HashMap<String, Value>
Trait Implementations§
Source§impl Clone for RetrievedParseInstallation
impl Clone for RetrievedParseInstallation
Source§fn clone(&self) -> RetrievedParseInstallation
fn clone(&self) -> RetrievedParseInstallation
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 RetrievedParseInstallation
impl Debug for RetrievedParseInstallation
Source§impl<'de> Deserialize<'de> for RetrievedParseInstallation
impl<'de> Deserialize<'de> for RetrievedParseInstallation
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
Auto Trait Implementations§
impl Freeze for RetrievedParseInstallation
impl RefUnwindSafe for RetrievedParseInstallation
impl Send for RetrievedParseInstallation
impl Sync for RetrievedParseInstallation
impl Unpin for RetrievedParseInstallation
impl UnwindSafe for RetrievedParseInstallation
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