[][src]Enum rtdlib::types::PageBlockHorizontalAlignment

pub enum PageBlockHorizontalAlignment {
    Center(PageBlockHorizontalAlignmentCenter),
    Left(PageBlockHorizontalAlignmentLeft),
    Right(PageBlockHorizontalAlignmentRight),
    // some variants omitted
}

Describes a horizontal alignment of a table cell content

Variants

The content should be center-aligned

The content should be left-aligned

The content should be right-aligned

Implementations

impl PageBlockHorizontalAlignment[src]

pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>[src]

pub fn is_center(&self) -> bool[src]

pub fn is_left(&self) -> bool[src]

pub fn is_right(&self) -> bool[src]

pub fn on_center<F: FnOnce(&PageBlockHorizontalAlignmentCenter)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_left<F: FnOnce(&PageBlockHorizontalAlignmentLeft)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_right<F: FnOnce(&PageBlockHorizontalAlignmentRight)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn as_center(&self) -> Option<&PageBlockHorizontalAlignmentCenter>[src]

pub fn as_left(&self) -> Option<&PageBlockHorizontalAlignmentLeft>[src]

pub fn as_right(&self) -> Option<&PageBlockHorizontalAlignmentRight>[src]

pub fn center<T: AsRef<PageBlockHorizontalAlignmentCenter>>(t: T) -> Self[src]

pub fn left<T: AsRef<PageBlockHorizontalAlignmentLeft>>(t: T) -> Self[src]

pub fn right<T: AsRef<PageBlockHorizontalAlignmentRight>>(t: T) -> Self[src]

Trait Implementations

impl AsRef<PageBlockHorizontalAlignment> for PageBlockHorizontalAlignment[src]

impl Clone for PageBlockHorizontalAlignment[src]

impl Debug for PageBlockHorizontalAlignment[src]

impl Default for PageBlockHorizontalAlignment[src]

impl<'de> Deserialize<'de> for PageBlockHorizontalAlignment[src]

impl RObject for PageBlockHorizontalAlignment[src]

impl Serialize for PageBlockHorizontalAlignment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.