pub struct DocDefaults {
pub run_properties: Option<RunProperties>,
pub paragraph_properties: Option<ParagraphProperties>,
pub unknown_children: Vec<RawXmlNode>,
}Expand description
Document defaults (w:docDefaults)
Fields§
§run_properties: Option<RunProperties>Default run properties
paragraph_properties: Option<ParagraphProperties>Default paragraph properties
unknown_children: Vec<RawXmlNode>Unknown children (preserved for round-trip)
Trait Implementations§
Source§impl Clone for DocDefaults
impl Clone for DocDefaults
Source§fn clone(&self) -> DocDefaults
fn clone(&self) -> DocDefaults
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 DocDefaults
impl Debug for DocDefaults
Source§impl Default for DocDefaults
impl Default for DocDefaults
Source§fn default() -> DocDefaults
fn default() -> DocDefaults
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DocDefaults
impl RefUnwindSafe for DocDefaults
impl Send for DocDefaults
impl Sync for DocDefaults
impl Unpin for DocDefaults
impl UnsafeUnpin for DocDefaults
impl UnwindSafe for DocDefaults
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