#[non_exhaustive]pub enum RdColumnAlign {
Left,
Center,
Right,
}Expand description
Alignment of one column in a \\tabular column specification.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RdColumnAlign
impl Clone for RdColumnAlign
Source§fn clone(&self) -> RdColumnAlign
fn clone(&self) -> RdColumnAlign
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RdColumnAlign
Source§impl Debug for RdColumnAlign
impl Debug for RdColumnAlign
impl Eq for RdColumnAlign
Source§impl PartialEq for RdColumnAlign
impl PartialEq for RdColumnAlign
impl StructuralPartialEq for RdColumnAlign
Auto Trait Implementations§
impl Freeze for RdColumnAlign
impl RefUnwindSafe for RdColumnAlign
impl Send for RdColumnAlign
impl Sync for RdColumnAlign
impl Unpin for RdColumnAlign
impl UnsafeUnpin for RdColumnAlign
impl UnwindSafe for RdColumnAlign
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