#[non_exhaustive]pub struct StartWorkspacesOutput {
    pub failed_requests: Option<Vec<FailedWorkspaceChangeRequest>>,
    /* private fields */
}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.failed_requests: Option<Vec<FailedWorkspaceChangeRequest>>Information about the WorkSpaces that could not be started.
Implementations§
source§impl StartWorkspacesOutput
 
impl StartWorkspacesOutput
sourcepub fn failed_requests(&self) -> Option<&[FailedWorkspaceChangeRequest]>
 
pub fn failed_requests(&self) -> Option<&[FailedWorkspaceChangeRequest]>
Information about the WorkSpaces that could not be started.
source§impl StartWorkspacesOutput
 
impl StartWorkspacesOutput
sourcepub fn builder() -> StartWorkspacesOutputBuilder
 
pub fn builder() -> StartWorkspacesOutputBuilder
Creates a new builder-style object to manufacture StartWorkspacesOutput.
Trait Implementations§
source§impl Clone for StartWorkspacesOutput
 
impl Clone for StartWorkspacesOutput
source§fn clone(&self) -> StartWorkspacesOutput
 
fn clone(&self) -> StartWorkspacesOutput
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 StartWorkspacesOutput
 
impl Debug for StartWorkspacesOutput
source§impl PartialEq for StartWorkspacesOutput
 
impl PartialEq for StartWorkspacesOutput
source§fn eq(&self, other: &StartWorkspacesOutput) -> bool
 
fn eq(&self, other: &StartWorkspacesOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for StartWorkspacesOutput
 
impl RequestId for StartWorkspacesOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for StartWorkspacesOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartWorkspacesOutput
impl Send for StartWorkspacesOutput
impl Sync for StartWorkspacesOutput
impl Unpin for StartWorkspacesOutput
impl UnwindSafe for StartWorkspacesOutput
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