Type Alias 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>