Struct markup5ever::interface::Attribute
source · pub struct Attribute {
pub name: QualName,
pub value: StrTendril,
}
Expand description
A tag attribute, e.g. class="test"
in <div class="test" ...>
.
The namespace on the attribute name is almost always ns!(“”). The tokenizer creates all attributes this way, but the tree builder will adjust certain attribute names inside foreign content (MathML, SVG).
Fields§
§name: QualName
The name of the attribute (e.g. the class
in <div class="test">
)
value: StrTendril
The value of the attribute (e.g. the "test"
in <div class="test">
)
Trait Implementations§
source§impl Ord for Attribute
impl Ord for Attribute
source§impl PartialEq for Attribute
impl PartialEq for Attribute
source§impl PartialOrd for Attribute
impl PartialOrd for Attribute
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Attribute
impl StructuralPartialEq for Attribute
Auto Trait Implementations§
impl !Freeze for Attribute
impl !RefUnwindSafe for Attribute
impl !Send for Attribute
impl !Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)