pub struct OAuthWindowResponse {
pub guid: Option<String>,
pub oauth_window_uri: Option<String>,
}Expand description
OAuthWindowResponse
JSON schema
{
"type": "object",
"properties": {
"guid": {
"examples": [
"MBR-df96fd60-7122-4464-b3c2-ff11d8c74f6f"
],
"type": [
"string",
"null"
]
},
"oauth_window_uri": {
"examples": [
"https://mxbank.mx.com/oauth/authorize?client_id=b8OikQ4Ep3NuSUrQ13DdvFuwpNx-qqoAsJDVAQCyLkQ&redirect_uri=https%3A%2F%2Fint-app.moneydesktop.com%2Foauth%2Fredirect_from&response_type=code&scope=openid&state=d745bd4ee6f0f9c184757f574bcc2df2"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§guid: Option<String>§oauth_window_uri: Option<String>Trait Implementations§
Source§impl Clone for OAuthWindowResponse
impl Clone for OAuthWindowResponse
Source§fn clone(&self) -> OAuthWindowResponse
fn clone(&self) -> OAuthWindowResponse
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 OAuthWindowResponse
impl Debug for OAuthWindowResponse
Source§impl Default for OAuthWindowResponse
impl Default for OAuthWindowResponse
Source§impl<'de> Deserialize<'de> for OAuthWindowResponse
impl<'de> Deserialize<'de> for OAuthWindowResponse
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<&OAuthWindowResponse> for OAuthWindowResponse
impl From<&OAuthWindowResponse> for OAuthWindowResponse
Source§fn from(value: &OAuthWindowResponse) -> Self
fn from(value: &OAuthWindowResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OAuthWindowResponse
impl RefUnwindSafe for OAuthWindowResponse
impl Send for OAuthWindowResponse
impl Sync for OAuthWindowResponse
impl Unpin for OAuthWindowResponse
impl UnwindSafe for OAuthWindowResponse
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