pub struct RunOnIOSSimulator {
pub device: Device,
pub env: Vec<(String, String)>,
}Expand description
This task launches the application on an iOS Simulator with the given identifier.
Fields§
§device: DeviceThe iOS Simulator on which to launch the application.
env: Vec<(String, String)>Additional environment variables that should be passed to the application.
Trait Implementations§
Source§impl Task for RunOnIOSSimulator
impl Task for RunOnIOSSimulator
Source§type Context = IOSContext
type Context = IOSContext
The type of context that is passed to this task, processed and
subsequently returned by this task.
Source§fn verb(&self) -> &str
fn verb(&self) -> &str
The verb that describes this task (e.g. “Launching” or “Building”) that
is shown to the user while the task is running.
Source§fn message(&self) -> &str
fn message(&self) -> &str
The message that is shown to the user alongside the verb. This usually
starts with a lowercase letter (e.g. “[Generating] source tree”).
Auto Trait Implementations§
impl Freeze for RunOnIOSSimulator
impl RefUnwindSafe for RunOnIOSSimulator
impl Send for RunOnIOSSimulator
impl Sync for RunOnIOSSimulator
impl Unpin for RunOnIOSSimulator
impl UnwindSafe for RunOnIOSSimulator
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