Struct aws_sdk_codebuild::model::TestCaseFilter [−][src]
#[non_exhaustive]pub struct TestCaseFilter {
pub status: Option<String>,
pub keyword: Option<String>,
}Expand description
A filter used to return specific types of test cases. In order to pass the filter, the report must meet all of the filter properties.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.status: Option<String>The status used to filter test cases. A TestCaseFilter can have one
status. Valid values are:
-
SUCCEEDED -
FAILED -
ERROR -
SKIPPED -
UNKNOWN
keyword: Option<String>A keyword that is used to filter on the name or the prefix
of the test cases. Only test cases where the keyword is a substring of the
name or the prefix will be returned.
Implementations
Creates a new builder-style object to manufacture TestCaseFilter
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for TestCaseFilter
impl Send for TestCaseFilter
impl Sync for TestCaseFilter
impl Unpin for TestCaseFilter
impl UnwindSafe for TestCaseFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more