pub struct Workspace {Show 20 fields
pub bundle_id: Option<String>,
pub computer_name: Option<String>,
pub data_replication_settings: Option<DataReplicationSettings>,
pub directory_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
pub ip_address: Option<String>,
pub ipv6_address: Option<String>,
pub modification_states: Option<Vec<ModificationState>>,
pub related_workspaces: Option<Vec<RelatedWorkspaceProperties>>,
pub root_volume_encryption_enabled: Option<bool>,
pub standby_workspaces_properties: Option<Vec<StandbyWorkspacesProperties>>,
pub state: Option<String>,
pub subnet_id: Option<String>,
pub user_name: Option<String>,
pub user_volume_encryption_enabled: Option<bool>,
pub volume_encryption_key: Option<String>,
pub workspace_id: Option<String>,
pub workspace_name: Option<String>,
pub workspace_properties: Option<WorkspaceProperties>,
}Fields§
§bundle_id: Option<String>§computer_name: Option<String>§data_replication_settings: Option<DataReplicationSettings>§directory_id: Option<String>§error_code: Option<String>§error_message: Option<String>§ip_address: Option<String>§ipv6_address: Option<String>§modification_states: Option<Vec<ModificationState>>§root_volume_encryption_enabled: Option<bool>§standby_workspaces_properties: Option<Vec<StandbyWorkspacesProperties>>§state: Option<String>§subnet_id: Option<String>§user_name: Option<String>§user_volume_encryption_enabled: Option<bool>§volume_encryption_key: Option<String>§workspace_id: Option<String>§workspace_name: Option<String>§workspace_properties: Option<WorkspaceProperties>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Workspace
impl<'de> Deserialize<'de> for Workspace
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 Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnsafeUnpin for Workspace
impl UnwindSafe for Workspace
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.