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