pub struct AppliedFix {
pub rule_id: &'static str,
pub description: String,
pub path: String,
}Expand description
A single fix that was successfully applied to the document.
Fields§
§rule_id: &'static strThe rule ID this fix addresses, e.g. "VAST-2.0-mediafile-https".
description: StringHuman-readable description of what was changed.
path: StringXPath-like path to the element that was modified.
Trait Implementations§
Source§impl Clone for AppliedFix
impl Clone for AppliedFix
Source§fn clone(&self) -> AppliedFix
fn clone(&self) -> AppliedFix
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 moreAuto Trait Implementations§
impl Freeze for AppliedFix
impl RefUnwindSafe for AppliedFix
impl Send for AppliedFix
impl Sync for AppliedFix
impl Unpin for AppliedFix
impl UnsafeUnpin for AppliedFix
impl UnwindSafe for AppliedFix
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