Enum selectors::attr::ParsedCaseSensitivity
source · pub enum ParsedCaseSensitivity {
ExplicitCaseSensitive,
AsciiCaseInsensitive,
CaseSensitive,
AsciiCaseInsensitiveIfInHtmlElementInHtmlDocument,
}
Variants§
ExplicitCaseSensitive
‘s’ was specified.
AsciiCaseInsensitive
‘i’ was specified.
CaseSensitive
No flags were specified and HTML says this is a case-sensitive attribute.
AsciiCaseInsensitiveIfInHtmlElementInHtmlDocument
No flags were specified and HTML says this is a case-insensitive attribute.
Trait Implementations§
source§impl Clone for ParsedCaseSensitivity
impl Clone for ParsedCaseSensitivity
source§fn clone(&self) -> ParsedCaseSensitivity
fn clone(&self) -> ParsedCaseSensitivity
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 ParsedCaseSensitivity
impl Debug for ParsedCaseSensitivity
source§impl PartialEq for ParsedCaseSensitivity
impl PartialEq for ParsedCaseSensitivity
source§fn eq(&self, other: &ParsedCaseSensitivity) -> bool
fn eq(&self, other: &ParsedCaseSensitivity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ToShmem for ParsedCaseSensitivity
impl ToShmem for ParsedCaseSensitivity
impl Copy for ParsedCaseSensitivity
impl Eq for ParsedCaseSensitivity
impl StructuralPartialEq for ParsedCaseSensitivity
Auto Trait Implementations§
impl Freeze for ParsedCaseSensitivity
impl RefUnwindSafe for ParsedCaseSensitivity
impl Send for ParsedCaseSensitivity
impl Sync for ParsedCaseSensitivity
impl Unpin for ParsedCaseSensitivity
impl UnwindSafe for ParsedCaseSensitivity
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