pub enum DidGeneratorError {
BuildError(String),
CandidGenerationError(String),
FileWriteError(String),
}Expand description
Errors that can occur during DID generation.
Variants§
Trait Implementations§
Source§impl Debug for DidGeneratorError
impl Debug for DidGeneratorError
Source§impl Display for DidGeneratorError
impl Display for DidGeneratorError
Source§impl Error for DidGeneratorError
impl Error for DidGeneratorError
1.30.0 · 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 Freeze for DidGeneratorError
impl RefUnwindSafe for DidGeneratorError
impl Send for DidGeneratorError
impl Sync for DidGeneratorError
impl Unpin for DidGeneratorError
impl UnwindSafe for DidGeneratorError
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