pub struct ApplicationOAuthScopeResponse {
pub scope: Option<Box<ApplicationOAuthScope>>,
}
Expand description
ApplicationOAuthScopeResponse : The Application Scope API response.
Fields§
§scope: Option<Box<ApplicationOAuthScope>>
Implementations§
Source§impl ApplicationOAuthScopeResponse
impl ApplicationOAuthScopeResponse
Sourcepub fn new() -> ApplicationOAuthScopeResponse
pub fn new() -> ApplicationOAuthScopeResponse
The Application Scope API response.
Trait Implementations§
Source§impl Clone for ApplicationOAuthScopeResponse
impl Clone for ApplicationOAuthScopeResponse
Source§fn clone(&self) -> ApplicationOAuthScopeResponse
fn clone(&self) -> ApplicationOAuthScopeResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ApplicationOAuthScopeResponse
impl Default for ApplicationOAuthScopeResponse
Source§fn default() -> ApplicationOAuthScopeResponse
fn default() -> ApplicationOAuthScopeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationOAuthScopeResponse
impl<'de> Deserialize<'de> for ApplicationOAuthScopeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApplicationOAuthScopeResponse
impl PartialEq for ApplicationOAuthScopeResponse
Source§fn eq(&self, other: &ApplicationOAuthScopeResponse) -> bool
fn eq(&self, other: &ApplicationOAuthScopeResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplicationOAuthScopeResponse
Auto Trait Implementations§
impl Freeze for ApplicationOAuthScopeResponse
impl RefUnwindSafe for ApplicationOAuthScopeResponse
impl Send for ApplicationOAuthScopeResponse
impl Sync for ApplicationOAuthScopeResponse
impl Unpin for ApplicationOAuthScopeResponse
impl UnwindSafe for ApplicationOAuthScopeResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more