pub struct AuditFinding {
pub finding_type: String,
pub description: String,
pub affected_items: Vec<String>,
pub suggestion: String,
}Expand description
Context audit finding from AI analysis.
Fields§
§finding_type: String§description: String§affected_items: Vec<String>§suggestion: StringTrait Implementations§
Source§impl Clone for AuditFinding
impl Clone for AuditFinding
Source§fn clone(&self) -> AuditFinding
fn clone(&self) -> AuditFinding
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 AuditFinding
impl Debug for AuditFinding
Source§impl<'de> Deserialize<'de> for AuditFinding
impl<'de> Deserialize<'de> for AuditFinding
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 AuditFinding
impl RefUnwindSafe for AuditFinding
impl Send for AuditFinding
impl Sync for AuditFinding
impl Unpin for AuditFinding
impl UnsafeUnpin for AuditFinding
impl UnwindSafe for AuditFinding
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