pub struct GatewaySession {
pub cookie_name: String,
pub cookie_value: String,
pub csrf_token: String,
}Expand description
The authenticated gateway session the flow yields.
Fields§
The session cookie’s name (webui-sid-<gatewayId>).
The session cookie’s value.
csrf_token: StringThe CSRF token (step 8’s csrfToken field) — rides the
X-CSRF-Token header on the reset POST.
Trait Implementations§
Source§impl Clone for GatewaySession
impl Clone for GatewaySession
Source§fn clone(&self) -> GatewaySession
fn clone(&self) -> GatewaySession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GatewaySession
impl RefUnwindSafe for GatewaySession
impl Send for GatewaySession
impl Sync for GatewaySession
impl Unpin for GatewaySession
impl UnsafeUnpin for GatewaySession
impl UnwindSafe for GatewaySession
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