[][src]Struct text_grid::RowBuf

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

A builder used to create row of GridBuf.

This structure is created by GridBuf::push_row.

Methods

impl<'_> RowBuf<'_>[src]

pub fn push(&mut self, cell: impl CellSource)[src]

Append a cell to the right of row.

pub fn push_with_colspan(&mut self, cell: impl CellSource, colspan: usize)[src]

Append a multi-column cell to the right of row.

  • cell : Contents of cell to be appended.
  • colspan : Number of columns used by the cell to be appended.

if colspan == 0, this method will do nothing.

Trait Implementations

impl<'_> Drop for RowBuf<'_>[src]

Auto Trait Implementations

impl<'a> Send for RowBuf<'a>

impl<'a> Sync for RowBuf<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]