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
Blockquote
A
tag.
Br
A
(line break) tag.
Cite
A (citation) tag.
Em
An (emphasis) tag.
Img
Fields
An (image) tag.
Li
An
Ol
An
- (ordered list) tag.
P
A
(paragraph) tag.
Span
A tag.
Strong
A (strong emphasis) tag.
Ul
Fields
A
- (unordered list) tag.
Unknown(Vec<Child>)
An unknown tag, with its children.
Trait Implementations§
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> 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