pub struct IndentLevel {
pub value: isize,
}
Expand description
Indent Level
use docx_rust::formatting::*;
let lvl = IndentLevel::from(42isize);
Fields§
§value: isize
Trait Implementations§
Source§impl Clone for IndentLevel
impl Clone for IndentLevel
Source§fn clone(&self) -> IndentLevel
fn clone(&self) -> IndentLevel
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 IndentLevel
impl Debug for IndentLevel
Source§impl Default for IndentLevel
impl Default for IndentLevel
Source§fn default() -> IndentLevel
fn default() -> IndentLevel
Returns the “default value” for a type. Read more
Source§impl<'__input> XmlRead<'__input> for IndentLevel
impl<'__input> XmlRead<'__input> for IndentLevel
Auto Trait Implementations§
impl Freeze for IndentLevel
impl RefUnwindSafe for IndentLevel
impl Send for IndentLevel
impl Sync for IndentLevel
impl Unpin for IndentLevel
impl UnwindSafe for IndentLevel
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