#[non_exhaustive]pub struct FailedCreateWorkspaceRequest {
pub workspace_request: Option<WorkspaceRequest>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}
Expand description
Describes a WorkSpace that cannot be created.
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_request: Option<WorkspaceRequest>
Information about the WorkSpace.
error_code: Option<String>
The error code that is returned if the WorkSpace cannot be created.
error_message: Option<String>
The text of the error message that is returned if the WorkSpace cannot be created.
Implementations
Information about the WorkSpace.
The error code that is returned if the WorkSpace cannot be created.
The text of the error message that is returned if the WorkSpace cannot be created.
Creates a new builder-style object to manufacture FailedCreateWorkspaceRequest
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 Send for FailedCreateWorkspaceRequest
impl Sync for FailedCreateWorkspaceRequest
impl Unpin for FailedCreateWorkspaceRequest
impl UnwindSafe for FailedCreateWorkspaceRequest
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