pub enum MobilePlatform {
IOS {
min_version: String,
devices: Vec<IOSDevice>,
},
Android {
min_api_level: u32,
architectures: Vec<AndroidArchitecture>,
},
Universal {
ios_config: Box<Option<IOSConfig>>,
android_config: Box<Option<AndroidConfig>>,
},
}
Expand description
Mobile platform specification
Variants§
IOS
iOS platform
Android
Android platform
Fields
§
architectures: Vec<AndroidArchitecture>
Target architectures
Universal
Universal mobile package
Trait Implementations§
Source§impl Clone for MobilePlatform
impl Clone for MobilePlatform
Source§fn clone(&self) -> MobilePlatform
fn clone(&self) -> MobilePlatform
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MobilePlatform
impl Debug for MobilePlatform
Source§impl Hash for MobilePlatform
impl Hash for MobilePlatform
Source§impl PartialEq for MobilePlatform
impl PartialEq for MobilePlatform
impl Eq for MobilePlatform
impl StructuralPartialEq for MobilePlatform
Auto Trait Implementations§
impl Freeze for MobilePlatform
impl RefUnwindSafe for MobilePlatform
impl Send for MobilePlatform
impl Sync for MobilePlatform
impl Unpin for MobilePlatform
impl UnwindSafe for MobilePlatform
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more