[][src]Struct newt::grid::VerticalGrid

pub struct VerticalGrid<'a> { /* fields omitted */ }

Arrange components vertically.

Implementations

impl<'a> VerticalGrid<'a>[src]

pub fn new<'t>(components: &'t [&'a dyn Component]) -> VerticalGrid<'a>[src]

Create a new Grid in which the added components are stacked in a single column.

pub fn new_close_stacked<'t>(
    components: &'t [&'a dyn Component]
) -> VerticalGrid<'a>
[src]

Create a new Grid in which the added components are closely stacked in a single column.

Trait Implementations

impl<'a> Component for VerticalGrid<'a>[src]

impl<'a> Drop for VerticalGrid<'a>[src]

impl<'a> GridFns for VerticalGrid<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for VerticalGrid<'a>

impl<'a> !Send for VerticalGrid<'a>

impl<'a> !Sync for VerticalGrid<'a>

impl<'a> Unpin for VerticalGrid<'a>

impl<'a> !UnwindSafe for VerticalGrid<'a>

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> 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> WidgetFns for T where
    T: Grid, 
[src]