pub struct Report {
pub replaced: BTreeMap<char, u32>,
pub skipped_html: u32,
}Expand description
Report of characters replaced and HTML fragments skipped during sanitizing.
Fields§
§replaced: BTreeMap<char, u32>Characters that were unencodable and replaced with ‘?’, with their counts.
skipped_html: u32Number of raw HTML fragments that were skipped.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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