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.