pub struct LinesFoundRecordEntry(/* private fields */);
Expand description
Number of instrumented lines
Trait Implementations§
Source§impl Clone for LinesFoundRecordEntry
impl Clone for LinesFoundRecordEntry
Source§fn clone(&self) -> LinesFoundRecordEntry
fn clone(&self) -> LinesFoundRecordEntry
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 LinesFoundRecordEntry
impl Debug for LinesFoundRecordEntry
Source§impl Default for LinesFoundRecordEntry
impl Default for LinesFoundRecordEntry
Source§fn default() -> LinesFoundRecordEntry
fn default() -> LinesFoundRecordEntry
Returns the “default value” for a type. Read more
Source§impl Display for LinesFoundRecordEntry
impl Display for LinesFoundRecordEntry
Source§impl FromStr for LinesFoundRecordEntry
impl FromStr for LinesFoundRecordEntry
Source§impl PartialEq for LinesFoundRecordEntry
impl PartialEq for LinesFoundRecordEntry
impl Eq for LinesFoundRecordEntry
impl StructuralPartialEq for LinesFoundRecordEntry
Auto Trait Implementations§
impl Freeze for LinesFoundRecordEntry
impl RefUnwindSafe for LinesFoundRecordEntry
impl Send for LinesFoundRecordEntry
impl Sync for LinesFoundRecordEntry
impl Unpin for LinesFoundRecordEntry
impl UnwindSafe for LinesFoundRecordEntry
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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