pub enum PageLabelKind {
Decimal,
RomanLower,
RomanUpper,
AlphaLower,
AlphaUpper,
}Expand description
The style of a page label number
Variants§
Decimal
Arabic decimal numerals (1, 2, 3, 4, …)
RomanLower
Lowercase roman numerals (i, ii, iii, iv, …)
RomanUpper
Uppercase roman numerals (I, II, III, IV, …)
AlphaLower
Lowercase letters (a-z, aa-zz, …)
AlphaUpper
Lowercase letters (a-z, aa-zz, …)
Trait Implementations§
Source§impl Clone for PageLabelKind
impl Clone for PageLabelKind
Source§fn clone(&self) -> PageLabelKind
fn clone(&self) -> PageLabelKind
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 PageLabelKind
impl Debug for PageLabelKind
Auto Trait Implementations§
impl Freeze for PageLabelKind
impl RefUnwindSafe for PageLabelKind
impl Send for PageLabelKind
impl Sync for PageLabelKind
impl Unpin for PageLabelKind
impl UnwindSafe for PageLabelKind
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