pub enum TableWidth {
Auto,
Percent(f64),
Twips(i32),
}Expand description
Table width specification
Variants§
Auto
Automatic width
Percent(f64)
Width as percentage (0.0 - 100.0)
Twips(i32)
Width in twips (1/20 of a point)
Trait Implementations§
Source§impl Clone for TableWidth
impl Clone for TableWidth
Source§fn clone(&self) -> TableWidth
fn clone(&self) -> TableWidth
Returns a duplicate 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 TableWidth
impl Debug for TableWidth
Source§impl Default for TableWidth
impl Default for TableWidth
Source§fn default() -> TableWidth
fn default() -> TableWidth
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableWidth
impl PartialEq for TableWidth
impl StructuralPartialEq for TableWidth
Auto Trait Implementations§
impl Freeze for TableWidth
impl RefUnwindSafe for TableWidth
impl Send for TableWidth
impl Sync for TableWidth
impl Unpin for TableWidth
impl UnsafeUnpin for TableWidth
impl UnwindSafe for TableWidth
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