pub struct SignalExtractionInput {
pub patch_diff: String,
pub intent: String,
pub expected_effect: String,
pub declared_signals: Vec<String>,
pub changed_files: Vec<String>,
pub validation_success: bool,
pub validation_logs: String,
pub stage_outputs: Vec<String>,
}Fields§
§patch_diff: String§intent: String§expected_effect: String§declared_signals: Vec<String>§changed_files: Vec<String>§validation_success: bool§validation_logs: String§stage_outputs: Vec<String>Trait Implementations§
Source§impl Clone for SignalExtractionInput
impl Clone for SignalExtractionInput
Source§fn clone(&self) -> SignalExtractionInput
fn clone(&self) -> SignalExtractionInput
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 SignalExtractionInput
impl Debug for SignalExtractionInput
Source§impl Default for SignalExtractionInput
impl Default for SignalExtractionInput
Source§fn default() -> SignalExtractionInput
fn default() -> SignalExtractionInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignalExtractionInput
impl<'de> Deserialize<'de> for SignalExtractionInput
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 SignalExtractionInput
impl PartialEq for SignalExtractionInput
Source§impl Serialize for SignalExtractionInput
impl Serialize for SignalExtractionInput
impl Eq for SignalExtractionInput
impl StructuralPartialEq for SignalExtractionInput
Auto Trait Implementations§
impl Freeze for SignalExtractionInput
impl RefUnwindSafe for SignalExtractionInput
impl Send for SignalExtractionInput
impl Sync for SignalExtractionInput
impl Unpin for SignalExtractionInput
impl UnsafeUnpin for SignalExtractionInput
impl UnwindSafe for SignalExtractionInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.