#[non_exhaustive]pub struct StartEnvironmentMetadata {
pub state: State,
/* private fields */
}
Expand description
Message included in the metadata field of operations returned from StartEnvironment.
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.state: State
Current state of the environment being started.
Implementations§
Trait Implementations§
Source§impl Clone for StartEnvironmentMetadata
impl Clone for StartEnvironmentMetadata
Source§fn clone(&self) -> StartEnvironmentMetadata
fn clone(&self) -> StartEnvironmentMetadata
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 Debug for StartEnvironmentMetadata
impl Debug for StartEnvironmentMetadata
Source§impl Default for StartEnvironmentMetadata
impl Default for StartEnvironmentMetadata
Source§fn default() -> StartEnvironmentMetadata
fn default() -> StartEnvironmentMetadata
Returns the “default value” for a type. Read more
Source§impl Message for StartEnvironmentMetadata
impl Message for StartEnvironmentMetadata
Source§impl PartialEq for StartEnvironmentMetadata
impl PartialEq for StartEnvironmentMetadata
impl StructuralPartialEq for StartEnvironmentMetadata
Auto Trait Implementations§
impl Freeze for StartEnvironmentMetadata
impl RefUnwindSafe for StartEnvironmentMetadata
impl Send for StartEnvironmentMetadata
impl Sync for StartEnvironmentMetadata
impl Unpin for StartEnvironmentMetadata
impl UnwindSafe for StartEnvironmentMetadata
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