[][src]Struct html2text::RenderTableRow

pub struct RenderTableRow { /* fields omitted */ }

Render tree table row

Implementations

impl RenderTableRow[src]

pub fn cells(&self) -> Iter<'_, RenderTableCell>[src]

Return a mutable iterator over the cells.

pub fn cells_mut(&mut self) -> IterMut<'_, RenderTableCell>[src]

Return a mutable iterator over the cells.

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

Count the number of cells in the row. Takes into account colspan.

pub fn cell_columns(&mut self) -> Vec<(usize, &mut RenderTableCell)>[src]

Return an iterator over (column, &cell)s, which takes into account colspan.

pub fn into_cells(self) -> Vec<RenderNode>[src]

Return the contained cells as RenderNodes, annotated with their widths if available. Skips cells with no width allocated.

Trait Implementations

impl Clone for RenderTableRow[src]

impl Debug for RenderTableRow[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.