pub struct FixOutcome {
pub changes: Vec<FixChange>,
pub skipped: Vec<(String, String)>,
pub applied: bool,
}Expand description
fix 실행 결과.
Fields§
§changes: Vec<FixChange>§skipped: Vec<(String, String)>해석 실패로 건드리지 않은 참조와 사유.
applied: boolfalse면 dry-run — 파일은 변경되지 않았다.
Auto Trait Implementations§
impl Freeze for FixOutcome
impl RefUnwindSafe for FixOutcome
impl Send for FixOutcome
impl Sync for FixOutcome
impl Unpin for FixOutcome
impl UnsafeUnpin for FixOutcome
impl UnwindSafe for FixOutcome
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