Struct docx_rust::formatting::TableJustification
source · [−]pub struct TableJustification {
pub value: Option<TableJustificationVal>,
}
Expand description
Table Justification
use docx::formatting::*;
let jc = TableJustification::from(TableJustificationVal::Start);
Fields
value: Option<TableJustificationVal>
Trait Implementations
sourceimpl Clone for TableJustification
impl Clone for TableJustification
sourcefn clone(&self) -> TableJustification
fn clone(&self) -> TableJustification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TableJustification
impl Debug for TableJustification
sourceimpl Default for TableJustification
impl Default for TableJustification
sourcefn default() -> TableJustification
fn default() -> TableJustification
Returns the “default value” for a type. Read more
sourceimpl From<TableJustificationVal> for TableJustification
impl From<TableJustificationVal> for TableJustification
sourcefn from(val: TableJustificationVal) -> Self
fn from(val: TableJustificationVal) -> Self
Converts to this type from the input type.
sourceimpl<'__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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more