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§
Source§impl AsRef<PageBlockHorizontalAlignment> for PageBlockHorizontalAlignment
impl AsRef<PageBlockHorizontalAlignment> for PageBlockHorizontalAlignment
Source§fn as_ref(&self) -> &PageBlockHorizontalAlignment
fn as_ref(&self) -> &PageBlockHorizontalAlignment
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for PageBlockHorizontalAlignment
impl Clone for PageBlockHorizontalAlignment
Source§fn clone(&self) -> PageBlockHorizontalAlignment
fn clone(&self) -> PageBlockHorizontalAlignment
Returns a copy 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 PageBlockHorizontalAlignment
impl Debug for PageBlockHorizontalAlignment
Source§impl Default for PageBlockHorizontalAlignment
impl Default for PageBlockHorizontalAlignment
Source§fn default() -> PageBlockHorizontalAlignment
fn default() -> PageBlockHorizontalAlignment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageBlockHorizontalAlignment
impl<'de> Deserialize<'de> for PageBlockHorizontalAlignment
Source§fn 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 Freeze for PageBlockHorizontalAlignment
impl RefUnwindSafe for PageBlockHorizontalAlignment
impl Send for PageBlockHorizontalAlignment
impl Sync for PageBlockHorizontalAlignment
impl Unpin for PageBlockHorizontalAlignment
impl UnwindSafe for PageBlockHorizontalAlignment
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