#[non_exhaustive]pub struct WorkspaceConnectionStatus {
pub workspace_id: Option<String>,
pub connection_state: Option<ConnectionState>,
pub connection_state_check_timestamp: Option<DateTime>,
pub last_known_user_connection_timestamp: Option<DateTime>,
}
Expand description
Describes the connection status of a WorkSpace.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workspace_id: Option<String>
The identifier of the WorkSpace.
connection_state: Option<ConnectionState>
The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.
connection_state_check_timestamp: Option<DateTime>
The timestamp of the connection status check.
last_known_user_connection_timestamp: Option<DateTime>
The timestamp of the last known user connection.
Implementations
The identifier of the WorkSpace.
The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.
The timestamp of the connection status check.
The timestamp of the last known user connection.
Creates a new builder-style object to manufacture WorkspaceConnectionStatus
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for WorkspaceConnectionStatus
impl Send for WorkspaceConnectionStatus
impl Sync for WorkspaceConnectionStatus
impl Unpin for WorkspaceConnectionStatus
impl UnwindSafe for WorkspaceConnectionStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more