pub struct ParagraphIndentation {
pub first_line_twips: Option<i32>,
pub hanging_twips: Option<i32>,
pub left_twips: Option<i32>,
pub right_twips: Option<i32>,
pub start_twips: Option<i32>,
pub end_twips: Option<i32>,
pub first_line_chars_hundredths: Option<i32>,
pub hanging_chars_hundredths: Option<i32>,
pub left_chars_hundredths: Option<i32>,
pub right_chars_hundredths: Option<i32>,
pub start_chars_hundredths: Option<i32>,
pub end_chars_hundredths: Option<i32>,
}Fields§
§first_line_twips: Option<i32>§hanging_twips: Option<i32>§left_twips: Option<i32>§right_twips: Option<i32>§start_twips: Option<i32>§end_twips: Option<i32>§first_line_chars_hundredths: Option<i32>§hanging_chars_hundredths: Option<i32>§left_chars_hundredths: Option<i32>§right_chars_hundredths: Option<i32>§start_chars_hundredths: Option<i32>§end_chars_hundredths: Option<i32>Trait Implementations§
Source§impl Clone for ParagraphIndentation
impl Clone for ParagraphIndentation
Source§fn clone(&self) -> ParagraphIndentation
fn clone(&self) -> ParagraphIndentation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ParagraphIndentation
Source§impl Debug for ParagraphIndentation
impl Debug for ParagraphIndentation
Source§impl Default for ParagraphIndentation
impl Default for ParagraphIndentation
Source§fn default() -> ParagraphIndentation
fn default() -> ParagraphIndentation
Returns the “default value” for a type. Read more
impl Eq for ParagraphIndentation
Source§impl PartialEq for ParagraphIndentation
impl PartialEq for ParagraphIndentation
impl StructuralPartialEq for ParagraphIndentation
Auto Trait Implementations§
impl Freeze for ParagraphIndentation
impl RefUnwindSafe for ParagraphIndentation
impl Send for ParagraphIndentation
impl Sync for ParagraphIndentation
impl Unpin for ParagraphIndentation
impl UnsafeUnpin for ParagraphIndentation
impl UnwindSafe for ParagraphIndentation
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