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

Represents a OAuth scopes.

Required Methods§

Gets metadata of this object.

Get the scope name.

Implementors§