Enum xmpp_parsers::xhtml::Tag

source ·
pub enum Tag {
Show 13 variants A { href: Option<String>, style: Css, type_: Option<String>, children: Vec<Child>, }, Blockquote { style: Css, children: Vec<Child>, }, Br, Cite { style: Css, children: Vec<Child>, }, Em { children: Vec<Child>, }, Img { src: Option<String>, alt: Option<String>, }, Li { style: Css, children: Vec<Child>, }, Ol { style: Css, children: Vec<Child>, }, P { style: Css, children: Vec<Child>, }, Span { style: Css, children: Vec<Child>, }, Strong { children: Vec<Child>, }, Ul { style: Css, children: Vec<Child>, }, Unknown(Vec<Child>),
}
Expand description

An xhtml tag.

Variants§

§

A

Fields

§href: Option<String>

The link target.

§style: Css

The CSS style of the link.

§type_: Option<String>

The media type of the linked resource.

§children: Vec<Child>

The children of this tag.

§

Blockquote

Fields

§style: Css

The CSS style of the blockquote.

§children: Vec<Child>

The children of this tag.

A

tag.

§

Br

A
(line break) tag.

§

Cite

Fields

§style: Css

The CSS style of the citation.

§children: Vec<Child>

The children of this tag.

A (citation) tag.

§

Em

Fields

§children: Vec<Child>

The children of this tag.

An (emphasis) tag.

§

Img

Fields

§src: Option<String>

The source of the image.

§alt: Option<String>

The alt text (for accessibility).

An (image) tag.

§

Li

Fields

§style: Css

The CSS style of the list item.

§children: Vec<Child>

The children of this tag.

An

  • (list item) tag.

  • §

    Ol

    Fields

    §style: Css

    The CSS style of the ordered list.

    §children: Vec<Child>

    The children of this tag.

    An

      (ordered list) tag.

    §

    P

    Fields

    §style: Css

    The CSS style of the paragraph.

    §children: Vec<Child>

    The children of this tag.

    A

    (paragraph) tag.

    §

    Span

    Fields

    §style: Css

    The CSS style of the span.

    §children: Vec<Child>

    The children of this tag.

    A tag.

    §

    Strong

    Fields

    §children: Vec<Child>

    The children of this tag.

    A (strong emphasis) tag.

    §

    Ul

    Fields

    §style: Css

    The CSS style of the unordered list.

    §children: Vec<Child>

    The children of this tag.

    A

      (unordered list) tag.

    §

    Unknown(Vec<Child>)

    An unknown tag, with its children.

    Trait Implementations§

    source§

    impl Clone for Tag

    source§

    fn clone(&self) -> Tag

    Returns a copy of the value. Read more
    1.0.0 · source§

    fn clone_from(&mut self, source: &Self)

    Performs copy-assignment from source. Read more
    source§

    impl Debug for Tag

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl From<Tag> for Element

    source§

    fn from(tag: Tag) -> Element

    Converts to this type from the input type.
    source§

    impl TryFrom<Element> for Tag

    §

    type Error = Error

    The type returned in the event of a conversion error.
    source§

    fn try_from(elem: Element) -> Result<Tag, Error>

    Performs the conversion.

    Auto Trait Implementations§

    §

    impl RefUnwindSafe for Tag

    §

    impl Send for Tag

    §

    impl Sync for Tag

    §

    impl Unpin for Tag

    §

    impl UnwindSafe for Tag

    Blanket Implementations§

    source§

    impl<T> Any for T
    where T: 'static + ?Sized,

    source§

    fn type_id(&self) -> TypeId

    Gets the TypeId of self. Read more
    source§

    impl<T> Borrow<T> for T
    where T: ?Sized,

    source§

    fn borrow(&self) -> &T

    Immutably borrows from an owned value. Read more
    source§

    impl<T> BorrowMut<T> for T
    where T: ?Sized,

    source§

    fn borrow_mut(&mut self) -> &mut T

    Mutably borrows from an owned value. Read more
    source§

    impl<T> From<T> for T

    source§

    fn from(t: T) -> T

    Returns the argument unchanged.

    source§

    impl<T, U> Into<U> for T
    where U: From<T>,

    source§

    fn into(self) -> U

    Calls U::from(self).

    That is, this conversion is whatever the implementation of From<T> for U chooses to do.

    source§

    impl<T> Same for T

    §

    type Output = T

    Should always be Self
    source§

    impl<T> ToOwned for T
    where T: Clone,

    §

    type Owned = T

    The resulting type after obtaining ownership.
    source§

    fn to_owned(&self) -> T

    Creates owned data from borrowed data, usually by cloning. Read more
    source§

    fn clone_into(&self, target: &mut T)

    Uses borrowed data to replace owned data, usually by cloning. Read more
    source§

    impl<T, U> TryFrom<U> for T
    where U: Into<T>,

    §

    type Error = Infallible

    The type returned in the event of a conversion error.
    source§

    fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

    Performs the conversion.
    source§

    impl<T, U> TryInto<U> for T
    where U: TryFrom<T>,

    §

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

    The type returned in the event of a conversion error.
    source§

    fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

    Performs the conversion.