pub struct VerificationRequiredNotification {
pub thread_id: ThreadId,
pub turn_id: TurnId,
pub reason: String,
pub changed_files: Vec<String>,
pub tool_evidence: Vec<String>,
pub tests_run: Vec<String>,
pub open_gaps: Vec<String>,
}Fields§
§thread_id: ThreadId§turn_id: TurnId§reason: String§changed_files: Vec<String>§tool_evidence: Vec<String>§tests_run: Vec<String>§open_gaps: Vec<String>Trait Implementations§
Source§impl Clone for VerificationRequiredNotification
impl Clone for VerificationRequiredNotification
Source§fn clone(&self) -> VerificationRequiredNotification
fn clone(&self) -> VerificationRequiredNotification
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<'de> Deserialize<'de> for VerificationRequiredNotification
impl<'de> Deserialize<'de> for VerificationRequiredNotification
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
Auto Trait Implementations§
impl Freeze for VerificationRequiredNotification
impl RefUnwindSafe for VerificationRequiredNotification
impl Send for VerificationRequiredNotification
impl Sync for VerificationRequiredNotification
impl Unpin for VerificationRequiredNotification
impl UnsafeUnpin for VerificationRequiredNotification
impl UnwindSafe for VerificationRequiredNotification
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