[][src]Struct cursive::align::Align

pub struct Align {
    pub h: HAlign,
    pub v: VAlign,
}

Specifies the alignment along both horizontal and vertical directions.

Fields

h: HAlign

Horizontal alignment policy

v: VAlign

Vertical alignment policy

Implementations

impl Align[src]

pub fn new(h: HAlign, v: VAlign) -> Align[src]

Creates a new Align object from the given alignments.

pub fn top_left() -> Align[src]

Creates a top-left alignment.

pub fn top_right() -> Align[src]

Creates a top-right alignment.

pub fn top_center() -> Align[src]

Creates a top-center alignment.

pub fn bot_left() -> Align[src]

Creates a bottom-left alignment.

pub fn bot_right() -> Align[src]

Creates a bottom-right alignment.

pub fn bot_center() -> Align[src]

Creates a bottom-center alignment.

pub fn center_left() -> Align[src]

Creates a center-right alignment.

pub fn center_right() -> Align[src]

Creates a center-right alignment.

pub fn center() -> Align[src]

Creates an alignment centered both horizontally and vertically.

Trait Implementations

impl Clone for Align[src]

impl Copy for Align[src]

impl Debug for Align[src]

impl Eq for Align[src]

impl Hash for Align[src]

impl PartialEq<Align> for Align[src]

impl StructuralEq for Align[src]

impl StructuralPartialEq for Align[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> CallHasher for T where
    T: Hash + ?Sized
[src]

impl<T> Erased for T

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.

impl<T> With for T[src]