pub struct Session {
pub id: String,
pub created_at: DateTime<Utc>,
pub last_activity: DateTime<Utc>,
pub expires_at: DateTime<Utc>,
pub client_info: Option<ClientInfo>,
pub data: Value,
pub authenticated: bool,
pub auth_info: Option<String>,
}
Expand description
Session metadata.
Fields§
§id: String
Unique session identifier.
created_at: DateTime<Utc>
Creation timestamp.
last_activity: DateTime<Utc>
Last activity timestamp.
expires_at: DateTime<Utc>
Session expiry timestamp.
client_info: Option<ClientInfo>
Client information.
data: Value
Custom session data.
authenticated: bool
Whether the session is authenticated.
auth_info: Option<String>
Authentication info if authenticated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
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 Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
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