Enum sentry_types::AuthParseError[][src]

pub enum AuthParseError {
    NonSentryAuth,
    InvalidTimestamp,
    InvalidVersion,
    MissingPublicKey,
}

Represents an auth header parsing error.

Variants

Raised if the auth header is not indicating sentry auth

Raised if the timestamp value is invalid.

Raised if the version value is invalid

Raised if the public key is missing entirely

Trait Implementations

impl Debug for AuthParseError
[src]

Formats the value using the given formatter. Read more

impl Copy for AuthParseError
[src]

impl Clone for AuthParseError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for AuthParseError
[src]

impl PartialEq for AuthParseError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations