pub struct Level {
pub ordered: bool,
pub start: Option<u32>,
pub ilvl: u8,
}Expand description
Formatting information for a single indentation level in a list.
Fields§
§ordered: boolWhether this level uses an ordered format (e.g. decimal, roman).
false means bullet/unordered.
start: Option<u32>Start value for ordered lists (e.g. Some(1) for numbering starting
at 1). None for bullets or when no <w:start> is specified.
ilvl: u8The indentation level (ilvl), 0-based.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnsafeUnpin for Level
impl UnwindSafe for Level
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