[][src]Struct html2text::RenderTable

pub struct RenderTable { /* fields omitted */ }

A representation of a table render tree with metadata.

Implementations

impl RenderTable[src]

pub fn new(rows: Vec<RenderTableRow>) -> RenderTable[src]

Create a new RenderTable with the given rows

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

Return an iterator over the rows.

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

Return an iterator over the rows.

pub fn into_rows(self, col_sizes: Vec<usize>) -> Vec<RenderNode>[src]

Consume this and return a Vec containing the children; the children know the column sizes required.

pub fn get_size_estimate(&self) -> SizeEstimate[src]

Calculate and store (or return stored value) of estimated size

Trait Implementations

impl Clone for RenderTable[src]

impl Debug for RenderTable[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.