Enum ruma_html::HtmlSanitizerMode
source · pub enum HtmlSanitizerMode {
Strict,
Compat,
}
Expand description
What HTML tags and attributes should be kept by the sanitizer.
Variants§
Strict
Keep only the tags and attributes listed in the Matrix specification.
Compat
Like Strict
mode, with additional tags and attributes that are not yet included in
the spec, but are reasonable to keep.
Trait Implementations§
source§impl Clone for HtmlSanitizerMode
impl Clone for HtmlSanitizerMode
source§fn clone(&self) -> HtmlSanitizerMode
fn clone(&self) -> HtmlSanitizerMode
Returns a copy 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 moresource§impl Debug for HtmlSanitizerMode
impl Debug for HtmlSanitizerMode
source§impl PartialEq<HtmlSanitizerMode> for HtmlSanitizerMode
impl PartialEq<HtmlSanitizerMode> for HtmlSanitizerMode
source§fn eq(&self, other: &HtmlSanitizerMode) -> bool
fn eq(&self, other: &HtmlSanitizerMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for HtmlSanitizerMode
impl Eq for HtmlSanitizerMode
impl StructuralEq for HtmlSanitizerMode
impl StructuralPartialEq for HtmlSanitizerMode
Auto Trait Implementations§
impl RefUnwindSafe for HtmlSanitizerMode
impl Send for HtmlSanitizerMode
impl Sync for HtmlSanitizerMode
impl Unpin for HtmlSanitizerMode
impl UnwindSafe for HtmlSanitizerMode
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