Enum sentry_types::DsnParseError[][src]

pub enum DsnParseError {
    InvalidUrl,
    InvalidScheme,
    NoUsername,
    NoProjectId,
    InvalidProjectId(ProjectIdParseError),
}

Represents a dsn url parsing error.

Variants

raised on completely invalid urls

raised the scheme is invalid / unsupported.

raised if the username (public key) portion is missing.

raised the project is is missing (first path component)

raised the project id is invalid.

Trait Implementations

impl Debug for DsnParseError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations