pub struct AuthorizationCodeRequest {
pub scope: Option<String>,
}Expand description
AuthorizationCodeRequest
JSON schema
{
"type": "object",
"properties": {
"scope": {
"examples": [
"user-guid:USR-101ad774-288b-44ed-ad16-da87d522ea20 member-guid:MBR-54feffb9-8474-47bd-8442-de003910113a account-guid:ACT-32a64160-582a-4f00-ab34-5f49cc35ed35 read-protected"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§scope: Option<String>Trait Implementations§
Source§impl Clone for AuthorizationCodeRequest
impl Clone for AuthorizationCodeRequest
Source§fn clone(&self) -> AuthorizationCodeRequest
fn clone(&self) -> AuthorizationCodeRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthorizationCodeRequest
impl Debug for AuthorizationCodeRequest
Source§impl Default for AuthorizationCodeRequest
impl Default for AuthorizationCodeRequest
Source§impl<'de> Deserialize<'de> for AuthorizationCodeRequest
impl<'de> Deserialize<'de> for AuthorizationCodeRequest
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 From<&AuthorizationCodeRequest> for AuthorizationCodeRequest
impl From<&AuthorizationCodeRequest> for AuthorizationCodeRequest
Source§fn from(value: &AuthorizationCodeRequest) -> Self
fn from(value: &AuthorizationCodeRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthorizationCodeRequest
impl RefUnwindSafe for AuthorizationCodeRequest
impl Send for AuthorizationCodeRequest
impl Sync for AuthorizationCodeRequest
impl Unpin for AuthorizationCodeRequest
impl UnwindSafe for AuthorizationCodeRequest
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