#[non_exhaustive]pub struct DescribeWorkspaceInput {
pub workspace_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workspace_id: Option<String>
The ID of the workspace to display information about.
Implementations§
source§impl DescribeWorkspaceInput
impl DescribeWorkspaceInput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace to display information about.
source§impl DescribeWorkspaceInput
impl DescribeWorkspaceInput
sourcepub fn builder() -> DescribeWorkspaceInputBuilder
pub fn builder() -> DescribeWorkspaceInputBuilder
Creates a new builder-style object to manufacture DescribeWorkspaceInput
.
Trait Implementations§
source§impl Clone for DescribeWorkspaceInput
impl Clone for DescribeWorkspaceInput
source§fn clone(&self) -> DescribeWorkspaceInput
fn clone(&self) -> DescribeWorkspaceInput
Returns a copy 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 DescribeWorkspaceInput
impl Debug for DescribeWorkspaceInput
source§impl PartialEq<DescribeWorkspaceInput> for DescribeWorkspaceInput
impl PartialEq<DescribeWorkspaceInput> for DescribeWorkspaceInput
source§fn eq(&self, other: &DescribeWorkspaceInput) -> bool
fn eq(&self, other: &DescribeWorkspaceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeWorkspaceInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeWorkspaceInput
impl Send for DescribeWorkspaceInput
impl Sync for DescribeWorkspaceInput
impl Unpin for DescribeWorkspaceInput
impl UnwindSafe for DescribeWorkspaceInput
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