pub enum PageBlockHorizontalAlignment {
Left,
Center,
Right,
}
Variants§
Left
The content must be left-aligned
Center
The content must be center-aligned
Right
The content must be right-aligned
Trait Implementations§
Source§impl Clone for PageBlockHorizontalAlignment
impl Clone for PageBlockHorizontalAlignment
Source§fn clone(&self) -> PageBlockHorizontalAlignment
fn clone(&self) -> PageBlockHorizontalAlignment
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 PageBlockHorizontalAlignment
impl Debug for PageBlockHorizontalAlignment
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
Source§impl PartialEq for PageBlockHorizontalAlignment
impl PartialEq for PageBlockHorizontalAlignment
Source§fn eq(&self, other: &PageBlockHorizontalAlignment) -> bool
fn eq(&self, other: &PageBlockHorizontalAlignment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PageBlockHorizontalAlignment
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