pub struct LaunchOptions {
pub apk_path: Option<String>,
pub app_id: Option<String>,
pub launch_activity: Option<String>,
pub stop_before_launch: bool,
pub timeout_ms: Option<u32>,
}Fields§
§apk_path: Option<String>§app_id: Option<String>§launch_activity: Option<String>§stop_before_launch: bool§timeout_ms: Option<u32>Trait Implementations§
Source§impl Clone for LaunchOptions
impl Clone for LaunchOptions
Source§fn clone(&self) -> LaunchOptions
fn clone(&self) -> LaunchOptions
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 LaunchOptions
impl Debug for LaunchOptions
Source§impl<'de> Deserialize<'de> for LaunchOptions
impl<'de> Deserialize<'de> for LaunchOptions
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
impl Eq for LaunchOptions
Source§impl PartialEq for LaunchOptions
impl PartialEq for LaunchOptions
Source§impl Serialize for LaunchOptions
impl Serialize for LaunchOptions
impl StructuralPartialEq for LaunchOptions
Auto Trait Implementations§
impl Freeze for LaunchOptions
impl RefUnwindSafe for LaunchOptions
impl Send for LaunchOptions
impl Sync for LaunchOptions
impl Unpin for LaunchOptions
impl UnsafeUnpin for LaunchOptions
impl UnwindSafe for LaunchOptions
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