pub struct ApplicationOAuthScopeRequest {
pub scope: Option<Box<ApplicationOAuthScope>>,
}
Expand description
ApplicationOAuthScopeRequest : The Application Scope API request object.
Fields§
§scope: Option<Box<ApplicationOAuthScope>>
Implementations§
Source§impl ApplicationOAuthScopeRequest
impl ApplicationOAuthScopeRequest
Sourcepub fn new() -> ApplicationOAuthScopeRequest
pub fn new() -> ApplicationOAuthScopeRequest
The Application Scope API request object.
Trait Implementations§
Source§impl Clone for ApplicationOAuthScopeRequest
impl Clone for ApplicationOAuthScopeRequest
Source§fn clone(&self) -> ApplicationOAuthScopeRequest
fn clone(&self) -> ApplicationOAuthScopeRequest
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 Debug for ApplicationOAuthScopeRequest
impl Debug for ApplicationOAuthScopeRequest
Source§impl Default for ApplicationOAuthScopeRequest
impl Default for ApplicationOAuthScopeRequest
Source§fn default() -> ApplicationOAuthScopeRequest
fn default() -> ApplicationOAuthScopeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationOAuthScopeRequest
impl<'de> Deserialize<'de> for ApplicationOAuthScopeRequest
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 ApplicationOAuthScopeRequest
impl PartialEq for ApplicationOAuthScopeRequest
Source§fn eq(&self, other: &ApplicationOAuthScopeRequest) -> bool
fn eq(&self, other: &ApplicationOAuthScopeRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplicationOAuthScopeRequest
Auto Trait Implementations§
impl Freeze for ApplicationOAuthScopeRequest
impl RefUnwindSafe for ApplicationOAuthScopeRequest
impl Send for ApplicationOAuthScopeRequest
impl Sync for ApplicationOAuthScopeRequest
impl Unpin for ApplicationOAuthScopeRequest
impl UnwindSafe for ApplicationOAuthScopeRequest
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