pub struct DescribeEnvironmentStatusResult {
pub message: Option<String>,
pub status: Option<String>,
}
Fields§
§message: Option<String>
Any informational message about the status of the environment.
status: Option<String>
The status of the environment. Available values include:
-
connecting
: The environment is connecting. -
creating
: The environment is being created. -
deleting
: The environment is being deleted. -
error
: The environment is in an error state. -
ready
: The environment is ready. -
stopped
: The environment is stopped. -
stopping
: The environment is stopping.
Trait Implementations§
Source§impl Clone for DescribeEnvironmentStatusResult
impl Clone for DescribeEnvironmentStatusResult
Source§fn clone(&self) -> DescribeEnvironmentStatusResult
fn clone(&self) -> DescribeEnvironmentStatusResult
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 Default for DescribeEnvironmentStatusResult
impl Default for DescribeEnvironmentStatusResult
Source§fn default() -> DescribeEnvironmentStatusResult
fn default() -> DescribeEnvironmentStatusResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeEnvironmentStatusResult
impl<'de> Deserialize<'de> for DescribeEnvironmentStatusResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeEnvironmentStatusResult
impl PartialEq for DescribeEnvironmentStatusResult
Source§fn eq(&self, other: &DescribeEnvironmentStatusResult) -> bool
fn eq(&self, other: &DescribeEnvironmentStatusResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeEnvironmentStatusResult
Auto Trait Implementations§
impl Freeze for DescribeEnvironmentStatusResult
impl RefUnwindSafe for DescribeEnvironmentStatusResult
impl Send for DescribeEnvironmentStatusResult
impl Sync for DescribeEnvironmentStatusResult
impl Unpin for DescribeEnvironmentStatusResult
impl UnwindSafe for DescribeEnvironmentStatusResult
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