pub enum HeadingKind {
Atx(u8),
Setext(SetextHeading),
}Expand description
Heading with level 1–6 and inline content.
Variants§
Trait Implementations§
Source§impl Clone for HeadingKind
impl Clone for HeadingKind
Source§fn clone(&self) -> HeadingKind
fn clone(&self) -> HeadingKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HeadingKind
impl Debug for HeadingKind
Source§impl PartialEq for HeadingKind
impl PartialEq for HeadingKind
impl StructuralPartialEq for HeadingKind
Auto Trait Implementations§
impl Freeze for HeadingKind
impl RefUnwindSafe for HeadingKind
impl Send for HeadingKind
impl Sync for HeadingKind
impl Unpin for HeadingKind
impl UnwindSafe for HeadingKind
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