Enum orca::net::auth::OauthApp [] [src]

pub enum OauthApp {
    WebApp,
    InstalledApp {
        id: String,
        redirect: String,
    },
    Script {
        id: String,
        secret: String,
        username: String,
        password: String,
    },
}

Contains data for authorization for each OAuth app type Currently only Script and InstalledApp are supported

Variants

Not Implemented

Where args are (app id, redirect uri)

Fields of InstalledApp

Where args are (app id, app secret, username, password)

Fields of Script

Trait Implementations

impl Debug for OauthApp
[src]

[src]

Formats the value using the given formatter.

impl Clone for OauthApp
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more