[−][src]Struct prettytable::row::Row
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]
&self,
out: &mut T,
format: &TableFormat,
col_width: &[usize]
) -> Result<(), Error>
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]
&self,
out: &mut T,
format: &TableFormat,
col_width: &[usize]
) -> Result<(), Error>
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?
fn into_iter(self) -> Self::IntoIter
[src]
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?
fn into_iter(self) -> Self::IntoIter
[src]
impl Default for Row
[src]
impl Clone for Row
[src]
fn clone(&self) -> 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]
fn extend<T: IntoIterator<Item = S>>(&mut self, iter: T)
[src]
impl<T, A> From<T> for Row where
A: ToString,
T: IntoIterator<Item = A>,
[src]
A: ToString,
T: IntoIterator<Item = A>,
impl Eq for Row
[src]
impl Debug for Row
[src]
impl Hash for Row
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
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.
fn index(&self, idx: usize) -> &Self::Output
[src]
impl IndexMut<usize> for Row
[src]
impl<A: ToString> FromIterator<A> for Row
[src]
fn from_iter<T>(iterator: T) -> Row where
T: IntoIterator<Item = A>,
[src]
T: IntoIterator<Item = A>,
impl FromIterator<Row> for Table
[src]
fn from_iter<T>(iterator: T) -> Table where
T: IntoIterator<Item = Row>,
[src]
T: IntoIterator<Item = Row>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,