Enum octorust::auth::Credentials [−][src]
pub enum Credentials {
Token(String),
Client(String, String),
JWT(JWTCredentials),
InstallationToken(InstallationTokenGenerator),
}Expand description
Various forms of authentication credentials supported by GitHub.
Variants
Token(String)Oauth token string https://developer.github.com/v3/#oauth2-token-sent-in-a-header
Oauth client id and secret https://developer.github.com/v3/#oauth2-keysecret
JWT(JWTCredentials)JWT token exchange, to be performed transparently in the background. app-id, DER key-file. https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/
InstallationToken(InstallationTokenGenerator)JWT-based App Installation Token https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Credentialsimpl Send for Credentialsimpl Sync for Credentialsimpl Unpin for Credentialsimpl UnwindSafe for CredentialsBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more