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