#[non_exhaustive]pub enum ParseError {
UserId(Error),
EventId(Error),
ServerNameFromEventId(OwnedEventId),
DerivedPublicKeyDoesNotMatchParsedKey {
parsed_key: Vec<u8>,
derived_key: Vec<u8>,
},
Oid {
expected: ObjectIdentifier,
found: ObjectIdentifier,
},
SecretKey,
PublicKey(Error),
Signature(Error),
Base64 {
of_type: String,
string: String,
source: Base64DecodeError,
},
}Expand description
Errors relating to parsing of all sorts.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
UserId(Error)
For user ID parsing errors.
EventId(Error)
For event ID parsing errors.
ServerNameFromEventId(OwnedEventId)
For when an event ID, coupled with a specific room version, doesn’t have a server name embedded.
DerivedPublicKeyDoesNotMatchParsedKey
For when the extracted/“parsed” public key from a PKCS#8 v2 document doesn’t match the public key derived from it’s private key.
Oid
For when the ASN.1 Object Identifier on a PKCS#8 document doesn’t match the expected one.
e.g. the document describes a RSA key, while an ed25519 key was expected.
Fields
expected: ObjectIdentifierThe expected OID.
found: ObjectIdentifierThe OID that was found instead.
SecretKey
For when ed25519_dalek cannot parse a secret/private key.
PublicKey(Error)
For when ed25519_dalek cannot parse a public key.
Signature(Error)
For when ed25519_dalek cannot parse a signature.
Base64
For when parsing base64 gives an error.
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Source§impl Display for ParseError
impl Display for ParseError
Source§impl Error for ParseError
impl Error for ParseError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl From<ParseError> for Error
impl From<ParseError> for Error
Source§fn from(source: ParseError) -> Error
fn from(source: ParseError) -> Error
Auto Trait Implementations§
impl Freeze for ParseError
impl !RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl !UnwindSafe for ParseError
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
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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 moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.