pub enum HeaderAlignment {
Left,
Center,
Right,
}Expand description
Header alignment options for Markdown tables.
Variants§
Left
Left-aligned headers (default): | --- |
Center
Center-aligned headers: | :---: |
Right
Right-aligned headers: | ---: |
Trait Implementations§
Source§impl Clone for HeaderAlignment
impl Clone for HeaderAlignment
Source§fn clone(&self) -> HeaderAlignment
fn clone(&self) -> HeaderAlignment
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 HeaderAlignment
impl Debug for HeaderAlignment
Source§impl PartialEq for HeaderAlignment
impl PartialEq for HeaderAlignment
impl Copy for HeaderAlignment
impl Eq for HeaderAlignment
impl StructuralPartialEq for HeaderAlignment
Auto Trait Implementations§
impl Freeze for HeaderAlignment
impl RefUnwindSafe for HeaderAlignment
impl Send for HeaderAlignment
impl Sync for HeaderAlignment
impl Unpin for HeaderAlignment
impl UnwindSafe for HeaderAlignment
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