pub struct ReleaseEnvironmentStatusUpdatedEvent {
pub realtime_release_definition_event: RealtimeReleaseDefinitionEvent,
pub environment_id: Option<i32>,
pub environment_status: Option<EnvironmentStatus>,
pub latest_deployment_operation_status: Option<LatestDeploymentOperationStatus>,
pub latest_deployment_status: Option<LatestDeploymentStatus>,
pub release_id: Option<i32>,
}
Expand description
Fields§
§realtime_release_definition_event: RealtimeReleaseDefinitionEvent
§environment_id: Option<i32>
§environment_status: Option<EnvironmentStatus>
§latest_deployment_operation_status: Option<LatestDeploymentOperationStatus>
§latest_deployment_status: Option<LatestDeploymentStatus>
§release_id: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for ReleaseEnvironmentStatusUpdatedEvent
impl Clone for ReleaseEnvironmentStatusUpdatedEvent
source§fn clone(&self) -> ReleaseEnvironmentStatusUpdatedEvent
fn clone(&self) -> ReleaseEnvironmentStatusUpdatedEvent
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 ReleaseEnvironmentStatusUpdatedEvent
impl Default for ReleaseEnvironmentStatusUpdatedEvent
source§fn default() -> ReleaseEnvironmentStatusUpdatedEvent
fn default() -> ReleaseEnvironmentStatusUpdatedEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReleaseEnvironmentStatusUpdatedEvent
impl<'de> Deserialize<'de> for ReleaseEnvironmentStatusUpdatedEvent
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 ReleaseEnvironmentStatusUpdatedEvent
impl PartialEq for ReleaseEnvironmentStatusUpdatedEvent
source§fn eq(&self, other: &ReleaseEnvironmentStatusUpdatedEvent) -> bool
fn eq(&self, other: &ReleaseEnvironmentStatusUpdatedEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReleaseEnvironmentStatusUpdatedEvent
Auto Trait Implementations§
impl Freeze for ReleaseEnvironmentStatusUpdatedEvent
impl RefUnwindSafe for ReleaseEnvironmentStatusUpdatedEvent
impl Send for ReleaseEnvironmentStatusUpdatedEvent
impl Sync for ReleaseEnvironmentStatusUpdatedEvent
impl Unpin for ReleaseEnvironmentStatusUpdatedEvent
impl UnwindSafe for ReleaseEnvironmentStatusUpdatedEvent
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