pub struct LineSpacing {
pub before: Option<u32>,
pub after: Option<u32>,
pub line: Option<u32>,
pub line_rule: Option<String>,
}Expand description
Line spacing settings
Fields§
§before: Option<u32>Space before paragraph (in twips)
after: Option<u32>Space after paragraph (in twips)
line: Option<u32>Line spacing value (in 240ths of a line for “auto”, twips for exact/atLeast)
line_rule: Option<String>Line spacing rule
Trait Implementations§
Source§impl Clone for LineSpacing
impl Clone for LineSpacing
Source§fn clone(&self) -> LineSpacing
fn clone(&self) -> LineSpacing
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 LineSpacing
impl Debug for LineSpacing
Source§impl Default for LineSpacing
impl Default for LineSpacing
Source§fn default() -> LineSpacing
fn default() -> LineSpacing
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LineSpacing
impl RefUnwindSafe for LineSpacing
impl Send for LineSpacing
impl Sync for LineSpacing
impl Unpin for LineSpacing
impl UnsafeUnpin for LineSpacing
impl UnwindSafe for LineSpacing
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