Struct sentry_rs::SentryCredentials [] [src]

pub struct SentryCredentials {
    pub key: String,
    pub secret: String,
    pub host: Option<String>,
    pub project_id: String,
}

Some Sentry Credentials. Which although not immediatly obvious are super easy to get. Firsrt things first, go fetch your Client Keys (DSN) like you normally would for a project. Should look something like:

https://XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY@ZZZZ/AAA

The "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" value is your "key". The "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" value is your "secret". The "ZZZZ" value is your "host". The "AAA" value is your "project_id".

Fields

Trait Implementations

impl Clone for SentryCredentials
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SentryCredentials
[src]

Formats the value using the given formatter.