pub struct Fix {
pub finding_id: String,
pub file_path: String,
pub line: usize,
pub description: String,
pub original: String,
pub replacement: String,
}Expand description
Represents a potential fix for a finding
Fields§
§finding_id: String§file_path: String§line: usize§description: String§original: String§replacement: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fix
impl RefUnwindSafe for Fix
impl Send for Fix
impl Sync for Fix
impl Unpin for Fix
impl UnwindSafe for Fix
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