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