pub(crate) struct CoverageCliFilters<'a> {
pub(crate) path_prefix: Option<&'a str>,
pub(crate) parser: Option<&'a str>,
pub(crate) provider: Option<&'a str>,
pub(crate) relation: Option<&'a str>,
pub(crate) state: Option<&'a str>,
pub(crate) reason: Option<&'a str>,
}Expand description
Borrowed CLI-only coverage filters before typed service parsing.
Fields§
§path_prefix: Option<&'a str>Optional repository path prefix.
parser: Option<&'a str>Optional source parser pass.
provider: Option<&'a str>Optional fact provider pass.
relation: Option<&'a str>Optional relation family.
state: Option<&'a str>Optional coverage state.
reason: Option<&'a str>Optional exact reason.
Auto Trait Implementations§
impl<'a> Freeze for CoverageCliFilters<'a>
impl<'a> RefUnwindSafe for CoverageCliFilters<'a>
impl<'a> Send for CoverageCliFilters<'a>
impl<'a> Sync for CoverageCliFilters<'a>
impl<'a> Unpin for CoverageCliFilters<'a>
impl<'a> UnwindSafe for CoverageCliFilters<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more