Enum spreadsheet_ods::style::units::StyleNumFormat
source · 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 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 StyleNumFormat
impl Debug for StyleNumFormat
source§impl Display for StyleNumFormat
impl Display for StyleNumFormat
source§impl PartialEq for StyleNumFormat
impl PartialEq for StyleNumFormat
source§fn eq(&self, other: &StyleNumFormat) -> bool
fn eq(&self, other: &StyleNumFormat) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for StyleNumFormat
impl StructuralEq for StyleNumFormat
impl StructuralPartialEq for StyleNumFormat
Auto Trait Implementations§
impl RefUnwindSafe for StyleNumFormat
impl Send for StyleNumFormat
impl Sync for StyleNumFormat
impl Unpin 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