pub enum KillSwitchState {
Inactive,
Active,
}Expand description
Kill-switch state for the autonomous release lane.
Variants§
Inactive
Kill switch is not active; lane may continue.
Active
Kill switch is active; lane must halt immediately.
Trait Implementations§
Source§impl Clone for KillSwitchState
impl Clone for KillSwitchState
Source§fn clone(&self) -> KillSwitchState
fn clone(&self) -> KillSwitchState
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 KillSwitchState
impl Debug for KillSwitchState
Source§impl<'de> Deserialize<'de> for KillSwitchState
impl<'de> Deserialize<'de> for KillSwitchState
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 KillSwitchState
impl PartialEq for KillSwitchState
Source§impl Serialize for KillSwitchState
impl Serialize for KillSwitchState
impl Copy for KillSwitchState
impl Eq for KillSwitchState
impl StructuralPartialEq for KillSwitchState
Auto Trait Implementations§
impl Freeze for KillSwitchState
impl RefUnwindSafe for KillSwitchState
impl Send for KillSwitchState
impl Sync for KillSwitchState
impl Unpin for KillSwitchState
impl UnsafeUnpin for KillSwitchState
impl UnwindSafe for KillSwitchState
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