pub enum ListItemKind {
Bullet,
Number,
}Expand description
List marker family of a ParaKind::ListItem.
Variants§
Bullet
Bullet marker. Checkable bullets stay in this family (gotcha #8 —
checkable is still BULLET); see the checked field.
Number
Ordered/numbered marker.
Trait Implementations§
Source§impl Clone for ListItemKind
impl Clone for ListItemKind
Source§fn clone(&self) -> ListItemKind
fn clone(&self) -> ListItemKind
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 ListItemKind
Source§impl Debug for ListItemKind
impl Debug for ListItemKind
impl Eq for ListItemKind
Source§impl PartialEq for ListItemKind
impl PartialEq for ListItemKind
impl StructuralPartialEq for ListItemKind
Auto Trait Implementations§
impl Freeze for ListItemKind
impl RefUnwindSafe for ListItemKind
impl Send for ListItemKind
impl Sync for ListItemKind
impl Unpin for ListItemKind
impl UnsafeUnpin for ListItemKind
impl UnwindSafe for ListItemKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.