pub enum CertParseError {
DataMissed,
InvalidFingerprint(Baid64ParseError),
InvalidPub(Baid64ParseError),
InvalidMessage(Error),
InvalidSig(Baid64ParseError),
}Variants§
DataMissed
SSI URI lacks signature or message information.
InvalidFingerprint(Baid64ParseError)
invalid certificate identity fingerprint - {0}.
InvalidPub(Baid64ParseError)
invalid certificate identity key - {0}.
InvalidMessage(Error)
invalid message digest - {0}.
InvalidSig(Baid64ParseError)
invalid signature data - {0}
Trait Implementations§
Source§impl Debug for CertParseError
impl Debug for CertParseError
Source§impl Display for CertParseError
impl Display for CertParseError
Source§impl Error for CertParseError
impl Error for CertParseError
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 From<Baid64ParseError> for CertParseError
impl From<Baid64ParseError> for CertParseError
Source§fn from(v: Baid64ParseError) -> Self
fn from(v: Baid64ParseError) -> Self
Converts to this type from the input type.
Source§impl From<CertParseError> for String
impl From<CertParseError> for String
Source§fn from(err: CertParseError) -> Self
fn from(err: CertParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CertParseError
impl !RefUnwindSafe for CertParseError
impl Send for CertParseError
impl Sync for CertParseError
impl Unpin for CertParseError
impl !UnwindSafe for CertParseError
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