pub struct InitiateOAuthResponse {
pub oauth_url: String,
pub state: String,
}Expand description
OAuth initiation response
Fields§
§oauth_url: String§state: StringTrait Implementations§
Source§impl Clone for InitiateOAuthResponse
impl Clone for InitiateOAuthResponse
Source§fn clone(&self) -> InitiateOAuthResponse
fn clone(&self) -> InitiateOAuthResponse
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 InitiateOAuthResponse
impl Debug for InitiateOAuthResponse
Source§impl<'de> Deserialize<'de> for InitiateOAuthResponse
impl<'de> Deserialize<'de> for InitiateOAuthResponse
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
Auto Trait Implementations§
impl Freeze for InitiateOAuthResponse
impl RefUnwindSafe for InitiateOAuthResponse
impl Send for InitiateOAuthResponse
impl Sync for InitiateOAuthResponse
impl Unpin for InitiateOAuthResponse
impl UnwindSafe for InitiateOAuthResponse
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