pub enum TrajectoryStateUpdateState {
Unspecified,
Running,
FullyIdle,
Cancelled,
WaitingForTasks,
Unknown(String),
}Expand description
antigravity.localharness.TrajectoryStateUpdate.State
Variants§
Unspecified
Running
FullyIdle
Cancelled
WaitingForTasks
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 TrajectoryStateUpdateState
impl Clone for TrajectoryStateUpdateState
Source§fn clone(&self) -> TrajectoryStateUpdateState
fn clone(&self) -> TrajectoryStateUpdateState
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 TrajectoryStateUpdateState
impl Debug for TrajectoryStateUpdateState
Source§impl Default for TrajectoryStateUpdateState
impl Default for TrajectoryStateUpdateState
Source§fn default() -> TrajectoryStateUpdateState
fn default() -> TrajectoryStateUpdateState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrajectoryStateUpdateState
impl<'de> Deserialize<'de> for TrajectoryStateUpdateState
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 TrajectoryStateUpdateState
impl Display for TrajectoryStateUpdateState
impl Eq for TrajectoryStateUpdateState
Source§impl Hash for TrajectoryStateUpdateState
impl Hash for TrajectoryStateUpdateState
impl StructuralPartialEq for TrajectoryStateUpdateState
Auto Trait Implementations§
impl Freeze for TrajectoryStateUpdateState
impl RefUnwindSafe for TrajectoryStateUpdateState
impl Send for TrajectoryStateUpdateState
impl Sync for TrajectoryStateUpdateState
impl Unpin for TrajectoryStateUpdateState
impl UnsafeUnpin for TrajectoryStateUpdateState
impl UnwindSafe for TrajectoryStateUpdateState
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