pub struct FixData {
pub changed: bool,
pub applied: Vec<AppliedFix>,
pub backup: Option<String>,
pub quarantine: Option<String>,
pub restore_hint: Option<String>,
pub dry_run: bool,
}Fields§
§changed: bool§applied: Vec<AppliedFix>§backup: Option<String>§quarantine: Option<String>§restore_hint: Option<String>§dry_run: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for FixData
impl<'de> Deserialize<'de> for FixData
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 FixData
impl RefUnwindSafe for FixData
impl Send for FixData
impl Sync for FixData
impl Unpin for FixData
impl UnsafeUnpin for FixData
impl UnwindSafe for FixData
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