pub struct ReleaseEnvironmentUpdateMetadata {
pub comment: Option<String>,
pub scheduled_deployment_time: Option<OffsetDateTime>,
pub status: Option<Status>,
pub variables: Option<Value>,
}Expand description
Fields§
§comment: Option<String>Gets or sets comment.
scheduled_deployment_time: Option<OffsetDateTime>Gets or sets scheduled deployment time.
status: Option<Status>Gets or sets status of environment.
variables: Option<Value>Sets list of environment variables to be overridden at deployment time.
Implementations§
Trait Implementations§
source§impl Clone for ReleaseEnvironmentUpdateMetadata
impl Clone for ReleaseEnvironmentUpdateMetadata
source§fn clone(&self) -> ReleaseEnvironmentUpdateMetadata
fn clone(&self) -> ReleaseEnvironmentUpdateMetadata
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 ReleaseEnvironmentUpdateMetadata
impl Default for ReleaseEnvironmentUpdateMetadata
source§fn default() -> ReleaseEnvironmentUpdateMetadata
fn default() -> ReleaseEnvironmentUpdateMetadata
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReleaseEnvironmentUpdateMetadata
impl<'de> Deserialize<'de> for ReleaseEnvironmentUpdateMetadata
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<ReleaseEnvironmentUpdateMetadata> for ReleaseEnvironmentUpdateMetadata
impl PartialEq<ReleaseEnvironmentUpdateMetadata> for ReleaseEnvironmentUpdateMetadata
source§fn eq(&self, other: &ReleaseEnvironmentUpdateMetadata) -> bool
fn eq(&self, other: &ReleaseEnvironmentUpdateMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.