pub struct RunTestsRequest {
pub class_ids: Option<Vec<String>>,
pub suite_ids: Option<Vec<String>>,
pub test_ids: Option<Vec<String>>,
pub test_level: Option<String>,
pub skip_code_coverage: Option<bool>,
}Expand description
Request for the unified Test Runner API (v65.0+).
Fields§
§class_ids: Option<Vec<String>>§suite_ids: Option<Vec<String>>§test_ids: Option<Vec<String>>§test_level: Option<String>§skip_code_coverage: Option<bool>Trait Implementations§
Source§impl Clone for RunTestsRequest
impl Clone for RunTestsRequest
Source§fn clone(&self) -> RunTestsRequest
fn clone(&self) -> RunTestsRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 RunTestsRequest
impl Debug for RunTestsRequest
Source§impl Default for RunTestsRequest
impl Default for RunTestsRequest
Source§fn default() -> RunTestsRequest
fn default() -> RunTestsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunTestsRequest
impl<'de> Deserialize<'de> for RunTestsRequest
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
Auto Trait Implementations§
impl Freeze for RunTestsRequest
impl RefUnwindSafe for RunTestsRequest
impl Send for RunTestsRequest
impl Sync for RunTestsRequest
impl Unpin for RunTestsRequest
impl UnwindSafe for RunTestsRequest
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