Enum fb2::StyleLinkElement
source · pub enum StyleLinkElement {
Strong(Vec<StyleLinkElement>),
Emphasis(Vec<StyleLinkElement>),
Style(Vec<StyleLinkElement>),
Strikethrough(Vec<StyleLinkElement>),
Subscript(Vec<StyleLinkElement>),
Superscript(Vec<StyleLinkElement>),
Code(Vec<StyleLinkElement>),
Image(InlineImage),
Text(String),
}Expand description
Markup
Variants§
Strong(Vec<StyleLinkElement>)
Emphasis(Vec<StyleLinkElement>)
Style(Vec<StyleLinkElement>)
Strikethrough(Vec<StyleLinkElement>)
Subscript(Vec<StyleLinkElement>)
Superscript(Vec<StyleLinkElement>)
Code(Vec<StyleLinkElement>)
Image(InlineImage)
Text(String)
Trait Implementations§
source§impl Debug for StyleLinkElement
impl Debug for StyleLinkElement
source§impl PartialEq<StyleLinkElement> for StyleLinkElement
impl PartialEq<StyleLinkElement> for StyleLinkElement
source§fn eq(&self, other: &StyleLinkElement) -> bool
fn eq(&self, other: &StyleLinkElement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StyleLinkElement
Auto Trait Implementations§
impl RefUnwindSafe for StyleLinkElement
impl Send for StyleLinkElement
impl Sync for StyleLinkElement
impl Unpin for StyleLinkElement
impl UnwindSafe for StyleLinkElement
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