pub enum StepUpdateState {
Unspecified,
Active,
Done,
WaitingForUser,
Error,
Unknown(String),
}Expand description
antigravity.localharness.StepUpdate.State
Variants§
Unspecified
Active
Done
WaitingForUser
Error
Unknown(String)
A value this crate does not know about yet.
The harness is versioned independently of this crate, so an unrecognised enum value is treated as forward compatibility rather than as a decode error.
Implementations§
Trait Implementations§
Source§impl Clone for StepUpdateState
impl Clone for StepUpdateState
Source§fn clone(&self) -> StepUpdateState
fn clone(&self) -> StepUpdateState
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 StepUpdateState
impl Debug for StepUpdateState
Source§impl Default for StepUpdateState
impl Default for StepUpdateState
Source§fn default() -> StepUpdateState
fn default() -> StepUpdateState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StepUpdateState
impl<'de> Deserialize<'de> for StepUpdateState
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for StepUpdateState
impl Display for StepUpdateState
impl Eq for StepUpdateState
Source§impl Hash for StepUpdateState
impl Hash for StepUpdateState
Source§impl PartialEq for StepUpdateState
impl PartialEq for StepUpdateState
Source§impl Serialize for StepUpdateState
impl Serialize for StepUpdateState
impl StructuralPartialEq for StepUpdateState
Auto Trait Implementations§
impl Freeze for StepUpdateState
impl RefUnwindSafe for StepUpdateState
impl Send for StepUpdateState
impl Sync for StepUpdateState
impl Unpin for StepUpdateState
impl UnsafeUnpin for StepUpdateState
impl UnwindSafe for StepUpdateState
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