pub struct NoSummary;Trait Implementations§
Source§impl ContextLessSummary for NoSummary
Catch-all implementation for when you need something that implements Summary without a specific type.
We implement it on a NoSummary instead of re-using (), as that avoids blanket impl collisions with impl<T: Summary> Dimension for T
(as we also need unit type to be a fill-in dimension)
impl ContextLessSummary for NoSummary
Catch-all implementation for when you need something that implements Summary without a specific type.
We implement it on a NoSummary instead of re-using (), as that avoids blanket impl collisions with impl<T: Summary> Dimension for T
(as we also need unit type to be a fill-in dimension)
impl Copy for NoSummary
impl Eq for NoSummary
impl StructuralPartialEq for NoSummary
Auto Trait Implementations§
impl Freeze for NoSummary
impl RefUnwindSafe for NoSummary
impl Send for NoSummary
impl Sync for NoSummary
impl Unpin for NoSummary
impl UnwindSafe for NoSummary
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> 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