pub struct LoginWithOauthRequest {
pub code: Option<String>,
pub state: Option<String>,
}Fields§
§code: Option<String>§state: Option<String>Implementations§
Source§impl LoginWithOauthRequest
impl LoginWithOauthRequest
pub fn new() -> LoginWithOauthRequest
Trait Implementations§
Source§impl Clone for LoginWithOauthRequest
impl Clone for LoginWithOauthRequest
Source§fn clone(&self) -> LoginWithOauthRequest
fn clone(&self) -> LoginWithOauthRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LoginWithOauthRequest
impl Debug for LoginWithOauthRequest
Source§impl Default for LoginWithOauthRequest
impl Default for LoginWithOauthRequest
Source§fn default() -> LoginWithOauthRequest
fn default() -> LoginWithOauthRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoginWithOauthRequest
impl<'de> Deserialize<'de> for LoginWithOauthRequest
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 LoginWithOauthRequest
impl PartialEq for LoginWithOauthRequest
Source§impl Serialize for LoginWithOauthRequest
impl Serialize for LoginWithOauthRequest
impl StructuralPartialEq for LoginWithOauthRequest
Auto Trait Implementations§
impl Freeze for LoginWithOauthRequest
impl RefUnwindSafe for LoginWithOauthRequest
impl Send for LoginWithOauthRequest
impl Sync for LoginWithOauthRequest
impl Unpin for LoginWithOauthRequest
impl UnwindSafe for LoginWithOauthRequest
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