Enum ruma::signatures::ParseError
source · #[non_exhaustive]pub enum ParseError {
UserId(Error),
EventId(Error),
ServerNameFromEventIdByRoomVersion(OwnedEventId, RoomVersionId),
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,
},
}
Available on crate feature
signatures
only.Expand description
Errors relating to parsing of all sorts.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UserId(Error)
For user ID parsing errors.
EventId(Error)
For event ID parsing errors.
ServerNameFromEventIdByRoomVersion(OwnedEventId, RoomVersionId)
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: ObjectIdentifier
The expected OID.
§
found: ObjectIdentifier
The 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)>
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<ParseError> for Error
impl From<ParseError> for Error
source§fn from(source: ParseError) -> Error
fn from(source: ParseError) -> Error
Converts to this type from the input type.
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
Mutably borrows from an owned value. Read more
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>
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