Type Alias gridly::grid::ColumnsView

source ·
pub type ColumnsView<'a, G> = View<'a, G, Column>;
Expand description

A view over the columns of a grid.

See View for more details.

Aliased Type§

struct ColumnsView<'a, G> { /* private fields */ }

Implementations§

source§

impl<'a, G: Grid + ?Sized> ColumnsView<'a, G>

source

pub fn column( &self, column: impl Into<Column> ) -> Result<ColumnView<'a, G>, ColumnRangeError>