pub struct SuiteRunOptions {
pub required_tags: Vec<String>,
pub only_ids: HashSet<String>,
pub skip_ids: HashSet<String>,
pub allow_writes_flag: bool,
pub fail_fast: bool,
pub output_dir_base: PathBuf,
pub env_rest_url: String,
pub env_gql_url: String,
pub progress: Option<Progress>,
}Fields§
§only_ids: HashSet<String>§skip_ids: HashSet<String>§allow_writes_flag: bool§fail_fast: bool§output_dir_base: PathBuf§env_rest_url: String§env_gql_url: String§progress: Option<Progress>Trait Implementations§
Source§impl Clone for SuiteRunOptions
impl Clone for SuiteRunOptions
Source§fn clone(&self) -> SuiteRunOptions
fn clone(&self) -> SuiteRunOptions
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 moreAuto Trait Implementations§
impl Freeze for SuiteRunOptions
impl RefUnwindSafe for SuiteRunOptions
impl Send for SuiteRunOptions
impl Sync for SuiteRunOptions
impl Unpin for SuiteRunOptions
impl UnsafeUnpin for SuiteRunOptions
impl UnwindSafe for SuiteRunOptions
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