pub enum NormalizedListKind {
Bullet,
Ordered,
Definition,
Column,
Plain,
}Expand description
Normalized mdoc list behavior copied independently of upstream enum values.
Variants§
Bullet
An unordered list whose items carry bullets.
Ordered
An ordered list whose items carry ordinal markers.
Definition
A term-and-description list.
Column
A list laid out as aligned columns.
Plain
A marker-free list.
Trait Implementations§
Source§impl Clone for NormalizedListKind
impl Clone for NormalizedListKind
Source§fn clone(&self) -> NormalizedListKind
fn clone(&self) -> NormalizedListKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NormalizedListKind
Source§impl Debug for NormalizedListKind
impl Debug for NormalizedListKind
Source§impl<'de> Deserialize<'de> for NormalizedListKind
impl<'de> Deserialize<'de> for NormalizedListKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NormalizedListKind
Source§impl PartialEq for NormalizedListKind
impl PartialEq for NormalizedListKind
Source§impl Serialize for NormalizedListKind
impl Serialize for NormalizedListKind
impl StructuralPartialEq for NormalizedListKind
Auto Trait Implementations§
impl Freeze for NormalizedListKind
impl RefUnwindSafe for NormalizedListKind
impl Send for NormalizedListKind
impl Sync for NormalizedListKind
impl Unpin for NormalizedListKind
impl UnsafeUnpin for NormalizedListKind
impl UnwindSafe for NormalizedListKind
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