pub struct PlatformApple {
pub id: String,
pub created_at: String,
pub updated_at: String,
pub name: String,
pub type: PlatformType,
pub bundle_identifier: String,
}Expand description
Platform Apple
Fields§
§id: StringPlatform ID.
created_at: StringPlatform creation date in ISO 8601 format.
updated_at: StringPlatform update date in ISO 8601 format.
name: StringPlatform name.
type: PlatformTypePlatform type. Possible values are: windows, apple, android, linux, web.
bundle_identifier: StringApple bundle identifier.
Implementations§
Source§impl PlatformApple
impl PlatformApple
Sourcepub fn created_at(&self) -> &String
pub fn created_at(&self) -> &String
Get created_at
Sourcepub fn updated_at(&self) -> &String
pub fn updated_at(&self) -> &String
Get updated_at
Sourcepub fn type(&self) -> &PlatformType
pub fn type(&self) -> &PlatformType
Get r#type
Sourcepub fn bundle_identifier(&self) -> &String
pub fn bundle_identifier(&self) -> &String
Get bundle_identifier
Trait Implementations§
Source§impl Clone for PlatformApple
impl Clone for PlatformApple
Source§fn clone(&self) -> PlatformApple
fn clone(&self) -> PlatformApple
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlatformApple
impl Debug for PlatformApple
Source§impl<'de> Deserialize<'de> for PlatformApple
impl<'de> Deserialize<'de> for PlatformApple
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 PlatformApple
impl Serialize for PlatformApple
impl Model for PlatformApple
Auto Trait Implementations§
impl Freeze for PlatformApple
impl RefUnwindSafe for PlatformApple
impl Send for PlatformApple
impl Sync for PlatformApple
impl Unpin for PlatformApple
impl UnsafeUnpin for PlatformApple
impl UnwindSafe for PlatformApple
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