pub struct SingleStructError<T: Debug + Display> { /* private fields */ }
Expand description
A container implementing the std::error::Error
trait.
Instances always carry a corresponding kind
of type T
and may be extended with a custom error
message and source.
This type is mainly designed to accommodate for the single struct error design pattern.
When used in a specialized context it is recommended to use a type alias (i.e. type MyError = SingleStructError<MyErrorKind>
).
Implementations§
Source§impl<T: Debug + Display> SingleStructError<T>
impl<T: Debug + Display> SingleStructError<T>
Sourcepub fn new(kind: T) -> Self
pub fn new(kind: T) -> Self
Constructs a new SingleStructError
.
Sourcepub fn custom_message(&self) -> Option<&str>
pub fn custom_message(&self) -> Option<&str>
Returns a reference to the custom message of the SingleStructError
if it was set.
Sourcepub fn source_ref(&self) -> Option<&(dyn Error + Send + Sync + 'static)>
pub fn source_ref(&self) -> Option<&(dyn Error + Send + Sync + 'static)>
Returns a reference to the attached source of the SingleStructError
if it was set.
Sourcepub fn into_source(self) -> Option<Box<dyn Error + Send + Sync + 'static>>
pub fn into_source(self) -> Option<Box<dyn Error + Send + Sync + 'static>>
Converts this error into the source error if it was set.
Sourcepub fn with_source(
self,
source: impl Into<Box<dyn Error + Send + Sync + 'static>>,
) -> Self
pub fn with_source( self, source: impl Into<Box<dyn Error + Send + Sync + 'static>>, ) -> Self
Updates the source
of the SingleStructError
.
Sourcepub fn with_custom_message(self, message: impl Into<Cow<'static, str>>) -> Self
pub fn with_custom_message(self, message: impl Into<Cow<'static, str>>) -> Self
Updates the custom message of the SingleStructError
.
Trait Implementations§
Source§impl<T: Debug + Display> Error for SingleStructError<T>
impl<T: Debug + Display> Error for SingleStructError<T>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<T> Freeze for SingleStructError<T>where
T: Freeze,
impl<T> !RefUnwindSafe for SingleStructError<T>
impl<T> Send for SingleStructError<T>where
T: Send,
impl<T> Sync for SingleStructError<T>where
T: Sync,
impl<T> Unpin for SingleStructError<T>where
T: Unpin,
impl<T> !UnwindSafe for SingleStructError<T>
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