pub struct IrgenError {
pub code: String,
pub message: IrgenErrorMessage,
}Fields§
§code: String§message: IrgenErrorMessageImplementations§
Source§impl IrgenError
impl IrgenError
pub fn new(code: String, message: IrgenErrorMessage) -> Self
Trait Implementations§
Source§impl Debug for IrgenError
impl Debug for IrgenError
Auto Trait Implementations§
impl Freeze for IrgenError
impl RefUnwindSafe for IrgenError
impl Send for IrgenError
impl Sync for IrgenError
impl Unpin for IrgenError
impl UnwindSafe for IrgenError
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> 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