Enum pdf_writer::types::ListNumbering
source · pub enum ListNumbering {
None,
Disc,
Circle,
Square,
Decimal,
LowerRoman,
UpperRoman,
LowerAlpha,
UpperAlpha,
}Expand description
The list numbering type.
Variants§
None
No numbering.
Disc
Solid circular bullets.
Circle
Open circular bullets.
Square
Solid square bullets.
Decimal
Decimal numbers.
LowerRoman
Lowercase Roman numerals.
UpperRoman
Uppercase Roman numerals.
LowerAlpha
Lowercase letters.
UpperAlpha
Uppercase letters.
Trait Implementations§
source§impl Clone for ListNumbering
impl Clone for ListNumbering
source§fn clone(&self) -> ListNumbering
fn clone(&self) -> ListNumbering
Returns a copy 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 ListNumbering
impl Debug for ListNumbering
source§impl Hash for ListNumbering
impl Hash for ListNumbering
source§impl PartialEq for ListNumbering
impl PartialEq for ListNumbering
source§fn eq(&self, other: &ListNumbering) -> bool
fn eq(&self, other: &ListNumbering) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ListNumbering
impl Eq for ListNumbering
impl StructuralEq for ListNumbering
impl StructuralPartialEq for ListNumbering
Auto Trait Implementations§
impl RefUnwindSafe for ListNumbering
impl Send for ListNumbering
impl Sync for ListNumbering
impl Unpin for ListNumbering
impl UnwindSafe for ListNumbering
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