pub struct ApplyEnvironmentManagedActionResult {
pub action_description: Option<String>,
pub action_id: Option<String>,
pub action_type: Option<String>,
pub status: Option<String>,
}
Expand description
The result message containing information about the managed action.
Fields§
§action_description: Option<String>
A description of the managed action.
action_id: Option<String>
The action ID of the managed action.
action_type: Option<String>
The type of managed action.
status: Option<String>
The status of the managed action.
Trait Implementations§
Source§impl Clone for ApplyEnvironmentManagedActionResult
impl Clone for ApplyEnvironmentManagedActionResult
Source§fn clone(&self) -> ApplyEnvironmentManagedActionResult
fn clone(&self) -> ApplyEnvironmentManagedActionResult
Returns a duplicate 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 Default for ApplyEnvironmentManagedActionResult
impl Default for ApplyEnvironmentManagedActionResult
Source§fn default() -> ApplyEnvironmentManagedActionResult
fn default() -> ApplyEnvironmentManagedActionResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplyEnvironmentManagedActionResult
impl PartialEq for ApplyEnvironmentManagedActionResult
Source§fn eq(&self, other: &ApplyEnvironmentManagedActionResult) -> bool
fn eq(&self, other: &ApplyEnvironmentManagedActionResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplyEnvironmentManagedActionResult
Auto Trait Implementations§
impl Freeze for ApplyEnvironmentManagedActionResult
impl RefUnwindSafe for ApplyEnvironmentManagedActionResult
impl Send for ApplyEnvironmentManagedActionResult
impl Sync for ApplyEnvironmentManagedActionResult
impl Unpin for ApplyEnvironmentManagedActionResult
impl UnwindSafe for ApplyEnvironmentManagedActionResult
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