Struct rphtml::parser::Attr[][src]

pub struct Attr {
    pub key: Option<AttrData>,
    pub value: Option<AttrData>,
    pub quote: Option<char>,
    pub need_quote: bool,
}

Attr attribute data if value is None, it’s a boolean attribute if key is None,it’s a value with quote

Fields

key: Option<AttrData>value: Option<AttrData>quote: Option<char>need_quote: bool

Implementations

impl Attr[src]

pub fn build(&self, remove_quote: bool) -> String[src]

pub fn need_quoted_char(ch: &char) -> bool[src]

pub fn check_if_id(&self) -> Option<String>[src]

Trait Implementations

impl Debug for Attr[src]

impl Default for Attr[src]

Auto Trait Implementations

impl RefUnwindSafe for Attr

impl Send for Attr

impl Sync for Attr

impl Unpin for Attr

impl UnwindSafe for Attr

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.