pub struct FixupPreview {
pub target_files: Vec<String>,
pub change_summary: HashMap<String, ChangeSummary>,
pub warnings: Vec<String>,
pub all_valid: bool,
}Expand description
Preview of fixup changes
Shows what would change without actually applying changes.
Fields§
§target_files: Vec<String>List of target files in the diffs
change_summary: HashMap<String, ChangeSummary>Change summary per file
warnings: Vec<String>Any warnings generated during preview
all_valid: boolWhether all diffs validated successfully
Trait Implementations§
Source§impl Clone for FixupPreview
impl Clone for FixupPreview
Source§fn clone(&self) -> FixupPreview
fn clone(&self) -> FixupPreview
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 FixupPreview
impl Debug for FixupPreview
Source§impl PartialEq for FixupPreview
impl PartialEq for FixupPreview
impl Eq for FixupPreview
impl StructuralPartialEq for FixupPreview
Auto Trait Implementations§
impl Freeze for FixupPreview
impl RefUnwindSafe for FixupPreview
impl Send for FixupPreview
impl Sync for FixupPreview
impl Unpin for FixupPreview
impl UnsafeUnpin for FixupPreview
impl UnwindSafe for FixupPreview
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.