Type Alias gridly::grid::RowView

source ·
pub type RowView<'a, G> = SingleView<'a, G, Row>;
Expand description

A view of a single row of a grid.

See SingleView for more details.

Aliased Type§

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

Implementations§

source§

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

source

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

Get a reference to the cell in a specific column of this view’s row.