[][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

Methods

impl Align[src]

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

Creates a new Align object from the given alignments.

pub fn top_left() -> Self[src]

Creates a top-left alignment.

pub fn top_right() -> Self[src]

Creates a top-right alignment.

pub fn bot_left() -> Self[src]

Creates a bottom-left alignment.

pub fn bot_right() -> Self[src]

Creates a bottom-right alignment.

pub fn center() -> Self[src]

Creates an alignment centered both horizontally and vertically.

Trait Implementations

impl Debug for Align[src]

Auto Trait Implementations

impl Send for Align

impl Sync for Align

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T[src]