pub enum ListType {
Unordered,
Ordered,
Description,
}Expand description
Represents the type of a list.
Variants§
Unordered
An unordered list is a list with items prefixed with symbol, such as a disc (aka bullet).
Ordered
An ordered list is a list with items prefixed with a number or other sequential mark.
Description
A description list is an association list that consists of one or more terms (or sets of terms) that each have a description.
Trait Implementations§
impl Copy for ListType
impl Eq for ListType
impl StructuralPartialEq for ListType
Auto Trait Implementations§
impl Freeze for ListType
impl RefUnwindSafe for ListType
impl Send for ListType
impl Sync for ListType
impl Unpin for ListType
impl UnsafeUnpin for ListType
impl UnwindSafe for ListType
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