Struct docx_rust::document::GridColumn
source · [−]pub struct GridColumn {
pub width: usize,
}
Expand description
Grid Column
use docx::document::*;
let col = GridColumn::from(42);
Fields
width: usize
Trait Implementations
sourceimpl Clone for GridColumn
impl Clone for GridColumn
sourcefn clone(&self) -> GridColumn
fn clone(&self) -> GridColumn
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 GridColumn
impl Debug for GridColumn
sourceimpl Default for GridColumn
impl Default for GridColumn
sourcefn default() -> GridColumn
fn default() -> GridColumn
Returns the “default value” for a type. Read more
sourceimpl From<usize> for GridColumn
impl From<usize> for GridColumn
sourcefn from(width: usize) -> GridColumn
fn from(width: usize) -> GridColumn
Converts to this type from the input type.
sourceimpl<'__input> XmlRead<'__input> for GridColumn
impl<'__input> XmlRead<'__input> for GridColumn
Auto Trait Implementations
impl RefUnwindSafe for GridColumn
impl Send for GridColumn
impl Sync for GridColumn
impl Unpin for GridColumn
impl UnwindSafe for GridColumn
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