Struct docx_rust::document::GridColumn
source · pub struct GridColumn {
pub width: isize,
}Expand description
Grid Column
use docx_rust::document::*;
let col = GridColumn::from(42);Fields§
§width: isizeTrait Implementations§
source§impl Clone for GridColumn
impl Clone for GridColumn
source§fn clone(&self) -> GridColumn
fn clone(&self) -> GridColumn
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 GridColumn
impl Debug for GridColumn
source§impl Default for GridColumn
impl Default for GridColumn
source§fn default() -> GridColumn
fn default() -> GridColumn
Returns the “default value” for a type. Read more
source§impl From<isize> for GridColumn
impl From<isize> for GridColumn
source§fn from(width: isize) -> GridColumn
fn from(width: isize) -> GridColumn
Converts to this type from the input type.
source§impl<'__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§
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