pub enum StyleNumFormat {
None,
Number,
LowerAlpha,
Alpha,
LowerRoman,
Roman,
Text(String),
}Expand description
20.322 style:num-format
The style:num-format attribute specifies a numbering sequence. If no value is given, no number sequence is displayed.
The defined values for the style:num-format attribute are:
- 1: number sequence starts with “1”.
- a: number sequence starts with “a”.
- A: number sequence starts with “A”.
- empty string: no number sequence displayed.
- i: number sequence starts with “i”.
- I: number sequence start with “I”.
- a value of type string 18.2
Variants§
Trait Implementations§
Source§impl Clone for StyleNumFormat
impl Clone for StyleNumFormat
Source§fn clone(&self) -> StyleNumFormat
fn clone(&self) -> StyleNumFormat
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 StyleNumFormat
impl Debug for StyleNumFormat
Source§impl Display for StyleNumFormat
impl Display for StyleNumFormat
Source§impl PartialEq for StyleNumFormat
impl PartialEq for StyleNumFormat
impl Eq for StyleNumFormat
impl StructuralPartialEq for StyleNumFormat
Auto Trait Implementations§
impl Freeze for StyleNumFormat
impl RefUnwindSafe for StyleNumFormat
impl Send for StyleNumFormat
impl Sync for StyleNumFormat
impl Unpin for StyleNumFormat
impl UnsafeUnpin for StyleNumFormat
impl UnwindSafe for StyleNumFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.