pub struct InstancePlatforms {
pub android: i32,
pub ios: Option<i32>,
pub standalonewindows: i32,
}Fields§
§android: i32§ios: Option<i32>§standalonewindows: i32Implementations§
Source§impl InstancePlatforms
impl InstancePlatforms
pub fn new(android: i32, standalonewindows: i32) -> InstancePlatforms
Trait Implementations§
Source§impl Clone for InstancePlatforms
impl Clone for InstancePlatforms
Source§fn clone(&self) -> InstancePlatforms
fn clone(&self) -> InstancePlatforms
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 InstancePlatforms
impl Debug for InstancePlatforms
Source§impl Default for InstancePlatforms
impl Default for InstancePlatforms
Source§fn default() -> InstancePlatforms
fn default() -> InstancePlatforms
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstancePlatforms
impl<'de> Deserialize<'de> for InstancePlatforms
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 InstancePlatforms
impl PartialEq for InstancePlatforms
Source§impl Serialize for InstancePlatforms
impl Serialize for InstancePlatforms
impl StructuralPartialEq for InstancePlatforms
Auto Trait Implementations§
impl Freeze for InstancePlatforms
impl RefUnwindSafe for InstancePlatforms
impl Send for InstancePlatforms
impl Sync for InstancePlatforms
impl Unpin for InstancePlatforms
impl UnsafeUnpin for InstancePlatforms
impl UnwindSafe for InstancePlatforms
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