pub struct CoverageGroup<S> { /* private fields */ }Implementations§
Source§impl<S> CoverageGroup<S>
impl<S> CoverageGroup<S>
pub const fn new(group_name: &'static str, target: ScalarTarget<S>) -> Self
pub const fn with_required_slot( self, required_slot: fn(&S, usize) -> bool, ) -> Self
pub const fn with_capacity_key( self, capacity_key: fn(&S, usize, usize) -> Option<usize>, ) -> Self
pub const fn with_entity_order(self, entity_order: fn(&S, usize) -> i64) -> Self
pub const fn with_value_order( self, value_order: fn(&S, usize, usize) -> i64, ) -> Self
pub const fn with_limits(self, limits: CoverageGroupLimits) -> Self
Trait Implementations§
Source§impl<S> Clone for CoverageGroup<S>
impl<S> Clone for CoverageGroup<S>
Source§impl<S> Debug for CoverageGroup<S>
impl<S> Debug for CoverageGroup<S>
impl<S> Copy for CoverageGroup<S>
Auto Trait Implementations§
impl<S> Freeze for CoverageGroup<S>
impl<S> RefUnwindSafe for CoverageGroup<S>
impl<S> Send for CoverageGroup<S>
impl<S> Sync for CoverageGroup<S>
impl<S> Unpin for CoverageGroup<S>
impl<S> UnsafeUnpin for CoverageGroup<S>
impl<S> UnwindSafe for CoverageGroup<S>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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