pub trait OAuthScopes {
    // Required methods
    fn meta() -> Vec<MetaOAuthScope>;
    fn name(&self) -> &'static str;
}
Expand description

Represents a OAuth scopes.

Required Methods§

source

fn meta() -> Vec<MetaOAuthScope>

Gets metadata of this object.

source

fn name(&self) -> &'static str

Get the scope name.

Implementors§