pub struct TestCaseFilter {
pub status: Option<String>,
}
Expand description
A filter used to return specific types of test cases.
Fields§
§status: Option<String>
The status used to filter test cases. Valid statuses are SUCCEEDED
, FAILED
, ERROR
, SKIPPED
, and UNKNOWN
. A TestCaseFilter
can have one status.
Trait Implementations§
Source§impl Clone for TestCaseFilter
impl Clone for TestCaseFilter
Source§fn clone(&self) -> TestCaseFilter
fn clone(&self) -> TestCaseFilter
Returns a copy 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 TestCaseFilter
impl Debug for TestCaseFilter
Source§impl Default for TestCaseFilter
impl Default for TestCaseFilter
Source§fn default() -> TestCaseFilter
fn default() -> TestCaseFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for TestCaseFilter
impl PartialEq for TestCaseFilter
Source§impl Serialize for TestCaseFilter
impl Serialize for TestCaseFilter
impl StructuralPartialEq for TestCaseFilter
Auto Trait Implementations§
impl Freeze for TestCaseFilter
impl RefUnwindSafe for TestCaseFilter
impl Send for TestCaseFilter
impl Sync for TestCaseFilter
impl Unpin for TestCaseFilter
impl UnwindSafe for TestCaseFilter
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