pub struct GroundStop {
pub engaged: bool,
pub since: Option<String>,
}Expand description
Whether everything is halted.
Fields§
§engaged: boolTrue when no new work may start.
since: Option<String>When the Ground Stop was engaged.
Trait Implementations§
Source§impl Clone for GroundStop
impl Clone for GroundStop
Source§impl Debug for GroundStop
impl Debug for GroundStop
Source§impl<'de> Deserialize<'de> for GroundStop
impl<'de> Deserialize<'de> for GroundStop
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 GroundStop
impl PartialEq for GroundStop
Source§impl Serialize for GroundStop
impl Serialize for GroundStop
impl StructuralPartialEq for GroundStop
Auto Trait Implementations§
impl Freeze for GroundStop
impl RefUnwindSafe for GroundStop
impl Send for GroundStop
impl Sync for GroundStop
impl Unpin for GroundStop
impl UnsafeUnpin for GroundStop
impl UnwindSafe for GroundStop
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