pub enum ListStyleEnum {
Ordered(OrderedListStyle),
Unordered(BulletStyle),
}Expand description
Combined list style enum
Variants§
Ordered(OrderedListStyle)
Ordered list with specific style
Unordered(BulletStyle)
Unordered list with specific bullet
Trait Implementations§
impl Copy for ListStyle
impl StructuralPartialEq for ListStyle
Auto Trait Implementations§
impl Freeze for ListStyle
impl RefUnwindSafe for ListStyle
impl Send for ListStyle
impl Sync for ListStyle
impl Unpin for ListStyle
impl UnsafeUnpin for ListStyle
impl UnwindSafe for ListStyle
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