pub struct FixOutput {
pub content: String,
pub fixes: Vec<AppliedFix>,
}Expand description
Helper struct returned by individual fixer modules.
Fields§
§content: String§fixes: Vec<AppliedFix>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixOutput
impl RefUnwindSafe for FixOutput
impl Send for FixOutput
impl Sync for FixOutput
impl Unpin for FixOutput
impl UnsafeUnpin for FixOutput
impl UnwindSafe for FixOutput
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