Struct aws_sdk_workspaces::input::RebuildWorkspacesInput
source · [−]#[non_exhaustive]pub struct RebuildWorkspacesInput {
pub rebuild_workspace_requests: Option<Vec<RebuildRequest>>,
}
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.rebuild_workspace_requests: Option<Vec<RebuildRequest>>
The WorkSpace to rebuild. You can specify a single WorkSpace.
Implementations
sourceimpl RebuildWorkspacesInput
impl RebuildWorkspacesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RebuildWorkspaces, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RebuildWorkspaces, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RebuildWorkspaces
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RebuildWorkspacesInput
sourceimpl RebuildWorkspacesInput
impl RebuildWorkspacesInput
sourcepub fn rebuild_workspace_requests(&self) -> Option<&[RebuildRequest]>
pub fn rebuild_workspace_requests(&self) -> Option<&[RebuildRequest]>
The WorkSpace to rebuild. You can specify a single WorkSpace.
Trait Implementations
sourceimpl Clone for RebuildWorkspacesInput
impl Clone for RebuildWorkspacesInput
sourcefn clone(&self) -> RebuildWorkspacesInput
fn clone(&self) -> RebuildWorkspacesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RebuildWorkspacesInput
impl Debug for RebuildWorkspacesInput
sourceimpl PartialEq<RebuildWorkspacesInput> for RebuildWorkspacesInput
impl PartialEq<RebuildWorkspacesInput> for RebuildWorkspacesInput
sourcefn eq(&self, other: &RebuildWorkspacesInput) -> bool
fn eq(&self, other: &RebuildWorkspacesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RebuildWorkspacesInput) -> bool
fn ne(&self, other: &RebuildWorkspacesInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for RebuildWorkspacesInput
Auto Trait Implementations
impl RefUnwindSafe for RebuildWorkspacesInput
impl Send for RebuildWorkspacesInput
impl Sync for RebuildWorkspacesInput
impl Unpin for RebuildWorkspacesInput
impl UnwindSafe for RebuildWorkspacesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more