pub struct IssuedSession {
pub session_id: SessionId,
pub set_cookie: String,
}Expand description
A successfully issued session.
Fields§
§session_id: SessionIdThe opaque session record identifier. Not a bearer credential.
The Set-Cookie header value to send to the client. Contains the
plaintext bearer secret; must not be logged.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IssuedSession
impl RefUnwindSafe for IssuedSession
impl Send for IssuedSession
impl Sync for IssuedSession
impl Unpin for IssuedSession
impl UnsafeUnpin for IssuedSession
impl UnwindSafe for IssuedSession
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