pub enum ListBulletKind {
Dash,
Star,
Plus,
}Expand description
Concrete bullet character used for a bullet list.
Variants§
Trait Implementations§
Source§impl Clone for ListBulletKind
impl Clone for ListBulletKind
Source§fn clone(&self) -> ListBulletKind
fn clone(&self) -> ListBulletKind
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 ListBulletKind
impl Debug for ListBulletKind
Source§impl<'de> Deserialize<'de> for ListBulletKind
impl<'de> Deserialize<'de> for ListBulletKind
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
Source§impl PartialEq for ListBulletKind
impl PartialEq for ListBulletKind
Source§impl Serialize for ListBulletKind
impl Serialize for ListBulletKind
impl Copy for ListBulletKind
impl Eq for ListBulletKind
impl StructuralPartialEq for ListBulletKind
Auto Trait Implementations§
impl Freeze for ListBulletKind
impl RefUnwindSafe for ListBulletKind
impl Send for ListBulletKind
impl Sync for ListBulletKind
impl Unpin for ListBulletKind
impl UnwindSafe for ListBulletKind
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