pub enum TableAlign {
Center,
Left,
Right,
Margins,
}Expand description
20.414 table:align
The table:align attribute specifies the horizontal alignment of a table.
The defined values for the table:align attribute are:
- center: table aligns to the center between left and right margins.
- left: table aligns to the left margin.
- margins: table fills all the space between the left and right margins.
- right: table aligns to the right margin.
Consumers that do not support the margins value, may treat this value as left.
Variants§
Trait Implementations§
Source§impl Clone for TableAlign
impl Clone for TableAlign
Source§fn clone(&self) -> TableAlign
fn clone(&self) -> TableAlign
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 TableAlign
impl Debug for TableAlign
Source§impl Display for TableAlign
impl Display for TableAlign
Source§impl PartialEq for TableAlign
impl PartialEq for TableAlign
impl Eq for TableAlign
impl StructuralPartialEq for TableAlign
Auto Trait Implementations§
impl Freeze for TableAlign
impl RefUnwindSafe for TableAlign
impl Send for TableAlign
impl Sync for TableAlign
impl Unpin for TableAlign
impl UnwindSafe for TableAlign
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.