pub struct TableJustification {
pub value: Option<TableJustificationVal>,
}
Expand description
Table Justification
use docx_rust::formatting::*;
let jc = TableJustification::from(TableJustificationVal::Start);
Fields§
§value: Option<TableJustificationVal>
Trait Implementations§
Source§impl Clone for TableJustification
impl Clone for TableJustification
Source§fn clone(&self) -> TableJustification
fn clone(&self) -> TableJustification
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 TableJustification
impl Debug for TableJustification
Source§impl Default for TableJustification
impl Default for TableJustification
Source§fn default() -> TableJustification
fn default() -> TableJustification
Returns the “default value” for a type. Read more
Source§impl From<TableJustificationVal> for TableJustification
impl From<TableJustificationVal> for TableJustification
Source§fn from(val: TableJustificationVal) -> Self
fn from(val: TableJustificationVal) -> Self
Converts to this type from the input type.
Source§impl<'__input> XmlRead<'__input> for TableJustification
impl<'__input> XmlRead<'__input> for TableJustification
Auto Trait Implementations§
impl Freeze for TableJustification
impl RefUnwindSafe for TableJustification
impl Send for TableJustification
impl Sync for TableJustification
impl Unpin for TableJustification
impl UnwindSafe for TableJustification
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