pub struct Session {
pub id: String,
pub expires_at: DateTime<Utc>,
pub token: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub ip_address: Option<String>,
pub user_agent: Option<String>,
pub user_id: String,
pub impersonated_by: Option<String>,
pub active_organization_id: Option<String>,
pub active: bool,
}Expand description
Session information - matches OpenAPI schema
Fields§
§id: String§expires_at: DateTime<Utc>§token: String§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§ip_address: Option<String>§user_agent: Option<String>§user_id: String§impersonated_by: Option<String>§active_organization_id: Option<String>§active: boolTrait Implementations§
Source§impl AuthSession for Session
impl AuthSession for Session
fn id(&self) -> &str
fn expires_at(&self) -> DateTime<Utc>
fn token(&self) -> &str
fn created_at(&self) -> DateTime<Utc>
fn updated_at(&self) -> DateTime<Utc>
fn ip_address(&self) -> Option<&str>
fn user_agent(&self) -> Option<&str>
fn user_id(&self) -> &str
fn impersonated_by(&self) -> Option<&str>
fn active_organization_id(&self) -> Option<&str>
fn active(&self) -> bool
Source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Session, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Session, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl MemorySession for Session
impl MemorySession for Session
Source§fn from_create(
id: String,
token: String,
create: &CreateSession,
now: DateTime<Utc>,
) -> Session
fn from_create( id: String, token: String, create: &CreateSession, now: DateTime<Utc>, ) -> Session
Construct a new session from creation data.
fn set_expires_at(&mut self, at: DateTime<Utc>)
fn set_active_organization_id(&mut self, org_id: Option<String>)
fn set_updated_at(&mut self, at: DateTime<Utc>)
Source§impl Serialize for Session
impl Serialize for Session
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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