pub struct OidcCallbackParams {
pub code: String,
pub state: String,
}Expand description
Query params appended to the callback URL after a successful login from the user
Fields§
§code: String§state: StringTrait Implementations§
Source§impl Debug for OidcCallbackParams
impl Debug for OidcCallbackParams
Source§impl<'de> Deserialize<'de> for OidcCallbackParams
impl<'de> Deserialize<'de> for OidcCallbackParams
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 OidcCallbackParams
impl RefUnwindSafe for OidcCallbackParams
impl Send for OidcCallbackParams
impl Sync for OidcCallbackParams
impl Unpin for OidcCallbackParams
impl UnsafeUnpin for OidcCallbackParams
impl UnwindSafe for OidcCallbackParams
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