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

Implementations

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 Clone for VAlign[src]

impl Copy for VAlign[src]

impl Debug for VAlign[src]

impl Eq for VAlign[src]

impl Hash for VAlign[src]

impl PartialEq<VAlign> for VAlign[src]

impl StructuralEq for VAlign[src]

impl StructuralPartialEq for VAlign[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]