Struct docx_rust::formatting::TableJustification
source · 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 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