pub struct FixResult {
pub xml: String,
pub applied: Vec<AppliedFix>,
pub remaining: Vec<Issue>,
}Expand description
The result of a fix or fix_with_context call.
Fields§
§xml: StringThe repaired VAST XML. Always well-formed; may differ structurally from the input if the input contained XML comments or processing instructions (these are stripped — see module-level docs).
applied: Vec<AppliedFix>All fixes that were successfully applied, in document order.
remaining: Vec<Issue>Issues that remain after all fixes were applied. These require manual intervention.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixResult
impl RefUnwindSafe for FixResult
impl Send for FixResult
impl Sync for FixResult
impl Unpin for FixResult
impl UnsafeUnpin for FixResult
impl UnwindSafe for FixResult
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