pub struct DeploymentSessionContext {
pub session_id: String,
pub status: String,
pub ready: bool,
pub linked: bool,
pub kind: String,
pub user_count: i32,
}Fields§
§session_id: StringUnique UUID
status: StringCurrent status of the session
ready: boolIf the session is linked to a Ready deployment
linked: boolIf the session is linked to a deployment
kind: StringType of session created
user_count: i32Count of user this session currently have
Implementations§
Trait Implementations§
Source§impl Clone for DeploymentSessionContext
impl Clone for DeploymentSessionContext
Source§fn clone(&self) -> DeploymentSessionContext
fn clone(&self) -> DeploymentSessionContext
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 DeploymentSessionContext
impl Debug for DeploymentSessionContext
Source§impl Default for DeploymentSessionContext
impl Default for DeploymentSessionContext
Source§fn default() -> DeploymentSessionContext
fn default() -> DeploymentSessionContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentSessionContext
impl<'de> Deserialize<'de> for DeploymentSessionContext
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
Source§impl PartialEq for DeploymentSessionContext
impl PartialEq for DeploymentSessionContext
Source§impl Serialize for DeploymentSessionContext
impl Serialize for DeploymentSessionContext
impl StructuralPartialEq for DeploymentSessionContext
Auto Trait Implementations§
impl Freeze for DeploymentSessionContext
impl RefUnwindSafe for DeploymentSessionContext
impl Send for DeploymentSessionContext
impl Sync for DeploymentSessionContext
impl Unpin for DeploymentSessionContext
impl UnwindSafe for DeploymentSessionContext
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