[][src]Struct prettytable::row::Row

pub struct Row { /* fields omitted */ }

Represent a table row made of cells

Methods

impl Row[src]

pub fn new(cells: Vec<Cell>) -> Row[src]

Create a new Row backed with cells vector

pub fn empty() -> Row[src]

Create an row of length size, with empty strings stored

pub fn len(&self) -> usize[src]

Get the number of cells in this row

pub fn is_empty(&self) -> bool[src]

Check if the row is empty (has no cell)

pub fn get_height(&self) -> usize[src]

Get the height of this row

pub fn get_cell_width(&self, column: usize) -> usize[src]

Get the minimum width required by the cell in the column column. Return 0 if the cell does not exist in this row

pub fn get_cell(&self, idx: usize) -> Option<&Cell>[src]

Get the cell at index idx

pub fn get_mut_cell(&mut self, idx: usize) -> Option<&mut Cell>[src]

Get the mutable cell at index idx

pub fn set_cell(&mut self, cell: Cell, column: usize) -> Result<(), &str>[src]

Set the cell in the row at the given column

pub fn add_cell(&mut self, cell: Cell)[src]

Append a cell at the end of the row

pub fn insert_cell(&mut self, index: usize, cell: Cell)[src]

Insert cell at position index. If index is higher than the row length, the cell will be appended at the end

pub fn remove_cell(&mut self, index: usize)[src]

Remove the cell at position index. Silently skip if this cell does not exist

pub fn iter(&self) -> Iter<Cell>[src]

Returns an immutable iterator over cells

pub fn iter_mut(&mut self) -> IterMut<Cell>[src]

Returns an mutable iterator over cells

pub fn print<T: Write + ?Sized>(
    &self,
    out: &mut T,
    format: &TableFormat,
    col_width: &[usize]
) -> Result<(), Error>
[src]

Print the row to out, with separator as column separator, and col_width specifying the width of each columns

pub fn print_term<T: Terminal + ?Sized>(
    &self,
    out: &mut T,
    format: &TableFormat,
    col_width: &[usize]
) -> Result<(), Error>
[src]

Print the row to terminal out, with separator as column separator, and col_width specifying the width of each columns. Apply style when needed

Trait Implementations

impl PartialEq<Row> for Row[src]

impl<'a> IntoIterator for &'a Row[src]

type Item = &'a Cell

The type of the elements being iterated over.

type IntoIter = Iter<'a, Cell>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut Row[src]

type Item = &'a mut Cell

The type of the elements being iterated over.

type IntoIter = IterMut<'a, Cell>

Which kind of iterator are we turning this into?

impl Default for Row[src]

impl Clone for Row[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: ToString> Extend<S> for Row[src]

impl<T, A> From<T> for Row where
    A: ToString,
    T: IntoIterator<Item = A>, 
[src]

impl Eq for Row[src]

impl Debug for Row[src]

impl Hash for Row[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Index<usize> for Row[src]

type Output = Cell

The returned type after indexing.

impl IndexMut<usize> for Row[src]

impl<A: ToString> FromIterator<A> for Row[src]

impl FromIterator<Row> for Table[src]

Auto Trait Implementations

impl Send for Row

impl Sync for Row

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[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]