pub struct KeriTypeError {
pub type_name: &'static str,
pub reason: String,
}Expand description
Error when constructing KERI newtypes with invalid values.
Fields§
§type_name: &'static strWhich KERI type failed validation.
reason: StringWhy validation failed.
Trait Implementations§
Source§impl Clone for KeriTypeError
impl Clone for KeriTypeError
Source§fn clone(&self) -> KeriTypeError
fn clone(&self) -> KeriTypeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KeriTypeError
impl Debug for KeriTypeError
Source§impl Display for KeriTypeError
impl Display for KeriTypeError
Source§impl Error for KeriTypeError
impl Error for KeriTypeError
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()
Source§impl PartialEq for KeriTypeError
impl PartialEq for KeriTypeError
impl Eq for KeriTypeError
impl StructuralPartialEq for KeriTypeError
Auto Trait Implementations§
impl Freeze for KeriTypeError
impl RefUnwindSafe for KeriTypeError
impl Send for KeriTypeError
impl Sync for KeriTypeError
impl Unpin for KeriTypeError
impl UnsafeUnpin for KeriTypeError
impl UnwindSafe for KeriTypeError
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