pub struct InstallOnIOSSimulator {
pub configuration: String,
pub device: Device,
}Expand description
This task installs an application on the iOS Simulator with the given identifier.
Fields§
§configuration: StringConfiguration with which the application was built, which is used to locate its path.
device: DeviceiOS Simulator on which the application will be installed.
Trait Implementations§
Source§impl Task for InstallOnIOSSimulator
impl Task for InstallOnIOSSimulator
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 InstallOnIOSSimulator
impl RefUnwindSafe for InstallOnIOSSimulator
impl Send for InstallOnIOSSimulator
impl Sync for InstallOnIOSSimulator
impl Unpin for InstallOnIOSSimulator
impl UnwindSafe for InstallOnIOSSimulator
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