pub struct AuthCodeResponse {
pub code: String,
pub session_state: String,
pub state: String,
}Fields§
§code: String§session_state: String§state: StringImplementations§
Trait Implementations§
Source§impl Clone for AuthCodeResponse
impl Clone for AuthCodeResponse
Source§fn clone(&self) -> AuthCodeResponse
fn clone(&self) -> AuthCodeResponse
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 AuthCodeResponse
impl Debug for AuthCodeResponse
Source§impl Default for AuthCodeResponse
impl Default for AuthCodeResponse
Source§fn default() -> AuthCodeResponse
fn default() -> AuthCodeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthCodeResponse
impl<'de> Deserialize<'de> for AuthCodeResponse
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 AuthCodeResponse
impl PartialEq for AuthCodeResponse
Source§impl Serialize for AuthCodeResponse
impl Serialize for AuthCodeResponse
impl StructuralPartialEq for AuthCodeResponse
Auto Trait Implementations§
impl Freeze for AuthCodeResponse
impl RefUnwindSafe for AuthCodeResponse
impl Send for AuthCodeResponse
impl Sync for AuthCodeResponse
impl Unpin for AuthCodeResponse
impl UnsafeUnpin for AuthCodeResponse
impl UnwindSafe for AuthCodeResponse
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