pub struct Format<T>(pub T);Expand description
A utility for printing the whole source tree. of an error type.
use diskann_quantization::error::Format;
use std::{error::Error, fmt::{Display, Formatter, Result}};
#[derive(Debug)]
struct A;
impl Display for A {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
f.write_str("A")
}
}
impl Error for A {
fn source(&self) -> Option<&(dyn Error + 'static)> {
Some(&B)
}
}
#[derive(Debug)]
struct B;
impl Display for B {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
f.write_str("B")
}
}
impl Error for B {}
assert_eq!(Format(A).to_string(), "A\n caused by: B");
assert_eq!(Format(&A).to_string(), "A\n caused by: B");Tuple Fields§
§0: TTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Format<T>where
T: Freeze,
impl<T> RefUnwindSafe for Format<T>where
T: RefUnwindSafe,
impl<T> Send for Format<T>where
T: Send,
impl<T> Sync for Format<T>where
T: Sync,
impl<T> Unpin for Format<T>where
T: Unpin,
impl<T> UnsafeUnpin for Format<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Format<T>where
T: UnwindSafe,
Blanket Implementations§
impl<T> AsyncFriendly for T
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> 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