pub enum DeployerEvent {
StepStarted(String),
StepCompleted(String),
StepFailed(String, String),
HealthCheckAttempt(u32, u32),
HealthCheckStatus(String),
}Variants§
StepStarted(String)
StepCompleted(String)
StepFailed(String, String)
HealthCheckAttempt(u32, u32)
HealthCheckStatus(String)
Trait Implementations§
Source§impl Clone for DeployerEvent
impl Clone for DeployerEvent
Source§fn clone(&self) -> DeployerEvent
fn clone(&self) -> DeployerEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeployerEvent
impl Debug for DeployerEvent
Auto Trait Implementations§
impl Freeze for DeployerEvent
impl RefUnwindSafe for DeployerEvent
impl Send for DeployerEvent
impl Sync for DeployerEvent
impl Unpin for DeployerEvent
impl UnsafeUnpin for DeployerEvent
impl UnwindSafe for DeployerEvent
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