Struct doc_chunks::literal::TrimmedLiteralDisplay
source · pub struct TrimmedLiteralDisplay<'a>(pub &'a TrimmedLiteral, pub Range);Expand description
A display style wrapper for a trimmed literal.
Allows better display of coverage results without code duplication.
Consists of literal reference and a relative range to the start of the literal.
Tuple Fields
0: &'a TrimmedLiteral1: RangeTrait Implementations
sourceimpl<'a> Clone for TrimmedLiteralDisplay<'a>
impl<'a> Clone for TrimmedLiteralDisplay<'a>
sourcefn clone(&self) -> TrimmedLiteralDisplay<'a>
fn clone(&self) -> TrimmedLiteralDisplay<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'a> Debug for TrimmedLiteralDisplay<'a>
impl<'a> Debug for TrimmedLiteralDisplay<'a>
sourceimpl<'a> Display for TrimmedLiteralDisplay<'a>
impl<'a> Display for TrimmedLiteralDisplay<'a>
sourceimpl<'a, R> From<(R, Range<usize>)> for TrimmedLiteralDisplay<'a>where
R: Into<&'a TrimmedLiteral>,
impl<'a, R> From<(R, Range<usize>)> for TrimmedLiteralDisplay<'a>where
R: Into<&'a TrimmedLiteral>,
sourceimpl<'a> Into<(&'a TrimmedLiteral, Range<usize>)> for TrimmedLiteralDisplay<'a>
impl<'a> Into<(&'a TrimmedLiteral, Range<usize>)> for TrimmedLiteralDisplay<'a>
sourcefn into(self) -> (&'a TrimmedLiteral, Range)
fn into(self) -> (&'a TrimmedLiteral, Range)
Converts this type into the (usually inferred) input type.
Auto Trait Implementations
impl<'a> RefUnwindSafe for TrimmedLiteralDisplay<'a>
impl<'a> Send for TrimmedLiteralDisplay<'a>
impl<'a> Sync for TrimmedLiteralDisplay<'a>
impl<'a> Unpin for TrimmedLiteralDisplay<'a>
impl<'a> UnwindSafe for TrimmedLiteralDisplay<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more