pub struct WorkSpacesStateView {Show 13 fields
pub workspaces: HashMap<String, WorkspaceView>,
pub directories: HashMap<String, WorkspaceDirectoryView>,
pub tags: HashMap<String, Vec<TagView>>,
pub images: HashMap<String, WorkspaceImageView>,
pub client_properties: HashMap<String, ClientPropertiesView>,
pub selfservice_permissions: HashMap<String, SelfservicePermissionsView>,
pub workspace_creation_properties: HashMap<String, WorkspaceCreationPropertiesView>,
pub image_permissions: HashMap<String, Vec<String>>,
pub ip_groups: HashMap<String, IpGroupView>,
pub connection_aliases: HashMap<String, ConnectionAliasView>,
pub connection_alias_permissions: HashMap<String, Vec<ConnectionAliasPermissionView>>,
pub bundles: HashMap<String, WorkspaceBundleView>,
pub pools: HashMap<String, WorkspacesPoolView>,
}Expand description
Serializable view of the entire WorkSpaces state for one account/region.
Fields§
§workspaces: HashMap<String, WorkspaceView>§directories: HashMap<String, WorkspaceDirectoryView>§images: HashMap<String, WorkspaceImageView>§client_properties: HashMap<String, ClientPropertiesView>§selfservice_permissions: HashMap<String, SelfservicePermissionsView>§workspace_creation_properties: HashMap<String, WorkspaceCreationPropertiesView>§image_permissions: HashMap<String, Vec<String>>§ip_groups: HashMap<String, IpGroupView>§connection_aliases: HashMap<String, ConnectionAliasView>§connection_alias_permissions: HashMap<String, Vec<ConnectionAliasPermissionView>>§bundles: HashMap<String, WorkspaceBundleView>§pools: HashMap<String, WorkspacesPoolView>Trait Implementations§
Source§impl Clone for WorkSpacesStateView
impl Clone for WorkSpacesStateView
Source§fn clone(&self) -> WorkSpacesStateView
fn clone(&self) -> WorkSpacesStateView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkSpacesStateView
impl Debug for WorkSpacesStateView
Source§impl Default for WorkSpacesStateView
impl Default for WorkSpacesStateView
Source§fn default() -> WorkSpacesStateView
fn default() -> WorkSpacesStateView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkSpacesStateView
impl<'de> Deserialize<'de> for WorkSpacesStateView
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 From<&WorkSpacesState> for WorkSpacesStateView
impl From<&WorkSpacesState> for WorkSpacesStateView
Source§fn from(state: &WorkSpacesState) -> Self
fn from(state: &WorkSpacesState) -> Self
Converts to this type from the input type.
Source§impl From<WorkSpacesStateView> for WorkSpacesState
impl From<WorkSpacesStateView> for WorkSpacesState
Source§fn from(view: WorkSpacesStateView) -> Self
fn from(view: WorkSpacesStateView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkSpacesStateView
impl RefUnwindSafe for WorkSpacesStateView
impl Send for WorkSpacesStateView
impl Sync for WorkSpacesStateView
impl Unpin for WorkSpacesStateView
impl UnsafeUnpin for WorkSpacesStateView
impl UnwindSafe for WorkSpacesStateView
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.