pub struct GenericError(pub Box<dyn Error>);
Expand description
A generic error, use instead of a Box
Use .into() to get the Box
Converting an E: Error
into Box<dyn Error>
, requires magic
because Box<dyn Error>
itself is Error
.
That conflicts with builtin impl<T> From<T> for T;
This struct must not implement Error, so it can be created from Error.
As the price, it must be converted back explicitly using .into()
.
Tuple Fields§
§0: Box<dyn Error>
Implementations§
Source§impl GenericError
impl GenericError
pub fn from_static<T: Error + 'static>(e: T) -> Self
Trait Implementations§
Source§impl Debug for GenericError
impl Debug for GenericError
Source§impl From<GenericError> for Box<dyn Error>
impl From<GenericError> for Box<dyn Error>
Source§fn from(value: GenericError) -> Self
fn from(value: GenericError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenericError
impl !RefUnwindSafe for GenericError
impl !Send for GenericError
impl !Sync for GenericError
impl Unpin for GenericError
impl !UnwindSafe for GenericError
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