pub enum PageBlockHorizontalAlignment {
Center(PageBlockHorizontalAlignmentCenter),
Left(PageBlockHorizontalAlignmentLeft),
Right(PageBlockHorizontalAlignmentRight),
// some variants omitted
}Expand description
Describes a horizontal alignment of a table cell content
Variants
Center(PageBlockHorizontalAlignmentCenter)
The content must be center-aligned
Left(PageBlockHorizontalAlignmentLeft)
The content must be left-aligned
Right(PageBlockHorizontalAlignmentRight)
The content must be right-aligned
Implementations
Trait Implementations
sourceimpl AsRef<PageBlockHorizontalAlignment> for PageBlockHorizontalAlignment
impl AsRef<PageBlockHorizontalAlignment> for PageBlockHorizontalAlignment
sourcefn as_ref(&self) -> &PageBlockHorizontalAlignment
fn as_ref(&self) -> &PageBlockHorizontalAlignment
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Clone for PageBlockHorizontalAlignment
impl Clone for PageBlockHorizontalAlignment
sourcefn clone(&self) -> PageBlockHorizontalAlignment
fn clone(&self) -> PageBlockHorizontalAlignment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PageBlockHorizontalAlignment
impl Debug for PageBlockHorizontalAlignment
sourceimpl<'de> Deserialize<'de> for PageBlockHorizontalAlignment
impl<'de> Deserialize<'de> for PageBlockHorizontalAlignment
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for PageBlockHorizontalAlignment
impl Send for PageBlockHorizontalAlignment
impl Sync for PageBlockHorizontalAlignment
impl Unpin for PageBlockHorizontalAlignment
impl UnwindSafe for PageBlockHorizontalAlignment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more