pub struct ApplicationSession {
pub id: String,
pub uri: String,
pub public_url: String,
pub browser_session: BrowserSession,
pub application_user: Option<Ref>,
pub created_at: String,
pub last_active: String,
pub expires_at: String,
pub endpoint: Option<Ref>,
pub edge: Option<Ref>,
pub route: Option<Ref>,
}Fields§
§id: Stringunique application session resource identifier
uri: StringURI of the application session API resource
public_url: StringURL of the hostport served by this endpoint
browser_session: BrowserSessionbrowser session details of the application session
application_user: Option<Ref>application user this session is associated with
created_at: Stringtimestamp when the user was created in RFC 3339 format
last_active: Stringtimestamp when the user was last active in RFC 3339 format
expires_at: Stringtimestamp when session expires in RFC 3339 format
endpoint: Option<Ref>ephemeral endpoint this session is associated with
edge: Option<Ref>edge this session is associated with, null if the endpoint is agent-initiated
route: Option<Ref>route this session is associated with, null if the endpoint is agent-initiated
Trait Implementations§
Source§impl Clone for ApplicationSession
impl Clone for ApplicationSession
Source§fn clone(&self) -> ApplicationSession
fn clone(&self) -> ApplicationSession
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApplicationSession
impl Debug for ApplicationSession
Source§impl Default for ApplicationSession
impl Default for ApplicationSession
Source§fn default() -> ApplicationSession
fn default() -> ApplicationSession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationSession
impl<'de> Deserialize<'de> for ApplicationSession
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 ApplicationSession
impl RefUnwindSafe for ApplicationSession
impl Send for ApplicationSession
impl Sync for ApplicationSession
impl Unpin for ApplicationSession
impl UnwindSafe for ApplicationSession
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