pub struct OAuthAuthorizeResponse {
pub url: String,
}Expand description
OAuth authorize response.
Fields§
§url: StringThe authorization URL to redirect to.
Trait Implementations§
Source§impl Clone for OAuthAuthorizeResponse
impl Clone for OAuthAuthorizeResponse
Source§fn clone(&self) -> OAuthAuthorizeResponse
fn clone(&self) -> OAuthAuthorizeResponse
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 OAuthAuthorizeResponse
impl Debug for OAuthAuthorizeResponse
Source§impl<'de> Deserialize<'de> for OAuthAuthorizeResponse
impl<'de> Deserialize<'de> for OAuthAuthorizeResponse
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 OAuthAuthorizeResponse
impl RefUnwindSafe for OAuthAuthorizeResponse
impl Send for OAuthAuthorizeResponse
impl Sync for OAuthAuthorizeResponse
impl Unpin for OAuthAuthorizeResponse
impl UnwindSafe for OAuthAuthorizeResponse
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