#[non_exhaustive]pub struct StopWorkspacesInput {
pub stop_workspace_requests: Option<Vec<StopRequest>>,
}
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.stop_workspace_requests: Option<Vec<StopRequest>>
The WorkSpaces to stop. You can specify up to 25 WorkSpaces.
Implementations§
source§impl StopWorkspacesInput
impl StopWorkspacesInput
sourcepub fn stop_workspace_requests(&self) -> &[StopRequest]
pub fn stop_workspace_requests(&self) -> &[StopRequest]
The WorkSpaces to stop. You can specify up to 25 WorkSpaces.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .stop_workspace_requests.is_none()
.
source§impl StopWorkspacesInput
impl StopWorkspacesInput
sourcepub fn builder() -> StopWorkspacesInputBuilder
pub fn builder() -> StopWorkspacesInputBuilder
Creates a new builder-style object to manufacture StopWorkspacesInput
.
Trait Implementations§
source§impl Clone for StopWorkspacesInput
impl Clone for StopWorkspacesInput
source§fn clone(&self) -> StopWorkspacesInput
fn clone(&self) -> StopWorkspacesInput
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 StopWorkspacesInput
impl Debug for StopWorkspacesInput
source§impl PartialEq for StopWorkspacesInput
impl PartialEq for StopWorkspacesInput
source§fn eq(&self, other: &StopWorkspacesInput) -> bool
fn eq(&self, other: &StopWorkspacesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StopWorkspacesInput
Auto Trait Implementations§
impl RefUnwindSafe for StopWorkspacesInput
impl Send for StopWorkspacesInput
impl Sync for StopWorkspacesInput
impl Unpin for StopWorkspacesInput
impl UnwindSafe for StopWorkspacesInput
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> 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>
Creates a shared type from an unshared type.