pub struct SchemeData {
pub test_host_bundle_identifier: String,
pub test_bundle_path: String,
pub skip_test_identifiers: Vec<String>,
pub only_test_identifiers: Vec<String>,
pub is_ui_test_bundle: bool,
pub command_line_arguments: Vec<String>,
pub environment_variables: HashMap<String, Value>,
pub testing_environment_variables: HashMap<String, Value>,
pub ui_target_app_environment_variables: HashMap<String, Value>,
pub ui_target_app_command_line_arguments: Vec<String>,
pub ui_target_app_path: String,
}Fields§
§test_host_bundle_identifier: String§test_bundle_path: String§skip_test_identifiers: Vec<String>§only_test_identifiers: Vec<String>§is_ui_test_bundle: bool§command_line_arguments: Vec<String>§environment_variables: HashMap<String, Value>§testing_environment_variables: HashMap<String, Value>§ui_target_app_environment_variables: HashMap<String, Value>§ui_target_app_command_line_arguments: Vec<String>§ui_target_app_path: StringTrait Implementations§
Source§impl Clone for SchemeData
impl Clone for SchemeData
Source§fn clone(&self) -> SchemeData
fn clone(&self) -> SchemeData
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 SchemeData
impl Debug for SchemeData
Source§impl<'de> Deserialize<'de> for SchemeData
impl<'de> Deserialize<'de> for SchemeData
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 SchemeData
impl PartialEq for SchemeData
Source§fn eq(&self, other: &SchemeData) -> bool
fn eq(&self, other: &SchemeData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SchemeData
Auto Trait Implementations§
impl Freeze for SchemeData
impl RefUnwindSafe for SchemeData
impl Send for SchemeData
impl Sync for SchemeData
impl Unpin for SchemeData
impl UnsafeUnpin for SchemeData
impl UnwindSafe for SchemeData
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