[][src]Enum cursive::align::VAlign

pub enum VAlign {
    Top,
    Center,
    Bottom,
}

Vertical alignment

Variants

Top

Place the element at the top of available space

Center

Place the element vertically in the center of available space

Bottom

Place the element at the bottom of available space

Methods

impl VAlign[src]

pub fn get_offset(&self, content: usize, container: usize) -> usize[src]

Returns the offset required to position a view.

When drawing a view with size content when the available size is container, printing at the resulting offset will align the view as desired.

Trait Implementations

impl Debug for VAlign[src]

Auto Trait Implementations

impl Sync for VAlign

impl Send for VAlign

impl Unpin for VAlign

impl RefUnwindSafe for VAlign

impl UnwindSafe for VAlign

Blanket Implementations

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T[src]