pub enum BulletKind {
Unordered,
Ordered(CounterKind),
}
Variants§
Unordered
Ordered(CounterKind)
Trait Implementations§
Source§impl Clone for BulletKind
impl Clone for BulletKind
Source§fn clone(&self) -> BulletKind
fn clone(&self) -> BulletKind
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 BulletKind
impl Debug for BulletKind
impl Copy for BulletKind
Auto Trait Implementations§
impl Freeze for BulletKind
impl RefUnwindSafe for BulletKind
impl Send for BulletKind
impl Sync for BulletKind
impl Unpin for BulletKind
impl UnwindSafe for BulletKind
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