Type Alias gridly::grid::RowsView

source ·
pub type RowsView<'a, G> = View<'a, G, Row>;
Expand description

A view over the rows of a grid.

See View for more details.

Aliased Type§

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

Implementations§

source§

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

source

pub fn row(&self, row: impl Into<Row>) -> Result<RowView<'a, G>, RowRangeError>