pub struct Login {
pub url: String,
pub transaction: String,
}Expand description
Where to send the browser, and what to remember while it is gone.
Fields§
§url: String§transaction: StringThe sealed transaction, for the cookie. It carries the state, the nonce and the PKCE verifier — so the relying party holds no per-login memory and a login cannot be a way to make it allocate.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Login
impl RefUnwindSafe for Login
impl Send for Login
impl Sync for Login
impl Unpin for Login
impl UnwindSafe for Login
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