[][src]Struct scraper::node::Element

pub struct Element {
    pub name: QualName,
    pub id: Option<LocalName>,
    pub classes: HashSet<LocalName>,
    pub attrs: HashMap<QualName, StrTendril>,
}

An HTML element.

Fields

name: QualName

The element name.

id: Option<LocalName>

The element ID.

classes: HashSet<LocalName>

The element classes.

attrs: HashMap<QualName, StrTendril>

The element attributes.

Methods

impl Element[src]

pub fn name(&self) -> &str[src]

Returns the element name.

pub fn id(&self) -> Option<&str>[src]

Returns the element ID.

pub fn has_class(&self, class: &str, case_sensitive: CaseSensitivity) -> bool[src]

Returns true if element has the class.

Important traits for Classes<'a>
pub fn classes(&self) -> Classes[src]

Returns an iterator over the element's classes.

pub fn attr(&self, attr: &str) -> Option<&str>[src]

Returns the value of an attribute.

Important traits for Attrs<'a>
pub fn attrs(&self) -> Attrs[src]

Returns an iterator over the element's attributes.

Trait Implementations

impl Eq for Element[src]

impl Clone for Element[src]

impl PartialEq<Element> for Element[src]

impl Debug for Element[src]

Auto Trait Implementations

impl !Send for Element

impl Unpin for Element

impl !Sync for Element

impl UnwindSafe for Element

impl !RefUnwindSafe for Element

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]