[][src]Struct rusoto_workspaces::WorkspaceConnectionStatus

pub struct WorkspaceConnectionStatus {
    pub connection_state: Option<String>,
    pub connection_state_check_timestamp: Option<f64>,
    pub last_known_user_connection_timestamp: Option<f64>,
    pub workspace_id: Option<String>,
}

Describes the connection status of a WorkSpace.

Fields

connection_state: Option<String>

The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.

connection_state_check_timestamp: Option<f64>

The timestamp of the connection status check.

last_known_user_connection_timestamp: Option<f64>

The timestamp of the last known user connection.

workspace_id: Option<String>

The identifier of the WorkSpace.

Trait Implementations

impl Clone for WorkspaceConnectionStatus[src]

impl Debug for WorkspaceConnectionStatus[src]

impl Default for WorkspaceConnectionStatus[src]

impl<'de> Deserialize<'de> for WorkspaceConnectionStatus[src]

impl PartialEq<WorkspaceConnectionStatus> for WorkspaceConnectionStatus[src]

impl StructuralPartialEq for WorkspaceConnectionStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.