pub struct FixRecord {
pub generated_from: String,
pub timestamp: String,
pub scan_directories: Vec<String>,
pub fixes: Vec<ReferenceFix>,
}Expand description
Collection of fixes to be applied
Fields§
§generated_from: StringSource of the changes that caused these fixes
timestamp: StringISO 8601 timestamp of when the scan was performed
scan_directories: Vec<String>Directories that were scanned
fixes: Vec<ReferenceFix>List of proposed fixes
Implementations§
Source§impl FixRecord
impl FixRecord
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FixRecord
impl<'de> Deserialize<'de> for FixRecord
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 FixRecord
impl RefUnwindSafe for FixRecord
impl Send for FixRecord
impl Sync for FixRecord
impl Unpin for FixRecord
impl UnsafeUnpin for FixRecord
impl UnwindSafe for FixRecord
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