Enum ruma_signatures::ParseError[][src]

#[non_exhaustive]
pub enum ParseError {
    UserId(Error),
    EventId(Error),
    ServerNameFromEventIdByRoomVersion(EventIdRoomVersionId),
    DerivedPublicKeyDoesNotMatchParsedKey {
        parsed_key: Vec<u8>,
        derived_key: Vec<u8>,
    },
    Oid {
        expected: ObjectIdentifier,
        found: ObjectIdentifier,
    },
    SecretKey(SignatureError),
    PublicKey(SignatureError),
    Signature(SignatureError),
    Base64 {
        of_type: String,
        string: String,
        source: DecodeError,
    },
}
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(EventIdRoomVersionId)

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.

Show fields

Fields of DerivedPublicKeyDoesNotMatchParsedKey

parsed_key: Vec<u8>

The parsed key.

derived_key: Vec<u8>

The derived 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.

Show fields

Fields of Oid

expected: ObjectIdentifier

The expected OID.

found: ObjectIdentifier

The OID that was found instead.

SecretKey(SignatureError)

For when ed25519_dalek cannot parse a secret/private key.

PublicKey(SignatureError)

For when ed25519_dalek cannot parse a public key.

Signature(SignatureError)

For when ed25519_dalek cannot parse a signature.

Base64

For when parsing base64 gives an error.

Show fields

Fields of Base64

of_type: String

The “type”/name of the base64 string

string: String

The string itself.

source: DecodeError

The originating error.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.