#[non_exhaustive]pub struct OAuthRequirements {
pub canonical_scopes: String,
/* private fields */
}
Expand description
OAuth scopes are a way to define data and permissions on data. For example, there are scopes defined for “Read-only access to Google Calendar” and “Access to Cloud Platform”. Users can consent to a scope for an application, giving it permission to access that data on their behalf.
OAuth scope specifications should be fairly coarse grained; a user will need to see and understand the text description of what your scope means.
In most cases: use one or at most two OAuth scopes for an entire family of products. If your product has multiple APIs, you should probably be sharing the OAuth scope across all of those APIs.
When you need finer grained OAuth consent screens: talk with your product management about how developers will use them in practice.
Please note that even though each of the canonical scopes is enough for a request to be accepted and passed to the backend, a request can still fail due to the backend requiring additional scopes or permissions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.canonical_scopes: String
The list of publicly documented OAuth scopes that are allowed access. An OAuth token containing any of these scopes will be accepted.
Example:
canonical_scopes: https://www.googleapis.com/auth/calendar,
https://www.googleapis.com/auth/calendar.read
Implementations§
Source§impl OAuthRequirements
impl OAuthRequirements
pub fn new() -> Self
Sourcepub fn set_canonical_scopes<T: Into<String>>(self, v: T) -> Self
pub fn set_canonical_scopes<T: Into<String>>(self, v: T) -> Self
Sets the value of canonical_scopes.
Trait Implementations§
Source§impl Clone for OAuthRequirements
impl Clone for OAuthRequirements
Source§fn clone(&self) -> OAuthRequirements
fn clone(&self) -> OAuthRequirements
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more