pub enum PageBlockVerticalAlignment {
Bottom(PageBlockVerticalAlignmentBottom),
Middle(PageBlockVerticalAlignmentMiddle),
Top(PageBlockVerticalAlignmentTop),
// some variants omitted
}Expand description
Describes a Vertical alignment of a table cell content
Variants
Bottom(PageBlockVerticalAlignmentBottom)
The content must be bottom-aligned
Middle(PageBlockVerticalAlignmentMiddle)
The content must be middle-aligned
Top(PageBlockVerticalAlignmentTop)
The content must be top-aligned
Implementations
Trait Implementations
sourceimpl AsRef<PageBlockVerticalAlignment> for PageBlockVerticalAlignment
impl AsRef<PageBlockVerticalAlignment> for PageBlockVerticalAlignment
sourcefn as_ref(&self) -> &PageBlockVerticalAlignment
fn as_ref(&self) -> &PageBlockVerticalAlignment
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Clone for PageBlockVerticalAlignment
impl Clone for PageBlockVerticalAlignment
sourcefn clone(&self) -> PageBlockVerticalAlignment
fn clone(&self) -> PageBlockVerticalAlignment
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 PageBlockVerticalAlignment
impl Debug for PageBlockVerticalAlignment
sourceimpl Default for PageBlockVerticalAlignment
impl Default for PageBlockVerticalAlignment
sourceimpl<'de> Deserialize<'de> for PageBlockVerticalAlignment
impl<'de> Deserialize<'de> for PageBlockVerticalAlignment
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 PageBlockVerticalAlignment
impl Send for PageBlockVerticalAlignment
impl Sync for PageBlockVerticalAlignment
impl Unpin for PageBlockVerticalAlignment
impl UnwindSafe for PageBlockVerticalAlignment
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