pub struct AuthorizeForm {
pub admin_token: String,
pub response_type: String,
pub client_id: String,
pub redirect_uri: String,
pub state: Option<String>,
pub scope: Option<String>,
pub code_challenge: Option<String>,
pub code_challenge_method: Option<String>,
}Fields§
§admin_token: String§response_type: String§client_id: String§redirect_uri: String§state: Option<String>§scope: Option<String>§code_challenge: Option<String>§code_challenge_method: Option<String>Trait Implementations§
Source§impl Debug for AuthorizeForm
impl Debug for AuthorizeForm
Source§impl<'de> Deserialize<'de> for AuthorizeForm
impl<'de> Deserialize<'de> for AuthorizeForm
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<AuthorizeForm> for AuthorizeRequest
impl From<AuthorizeForm> for AuthorizeRequest
Source§fn from(form: AuthorizeForm) -> Self
fn from(form: AuthorizeForm) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthorizeForm
impl RefUnwindSafe for AuthorizeForm
impl Send for AuthorizeForm
impl Sync for AuthorizeForm
impl Unpin for AuthorizeForm
impl UnsafeUnpin for AuthorizeForm
impl UnwindSafe for AuthorizeForm
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