[][src]Struct arwa::html::TableSectionRows

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

Methods

impl<'a> TableSectionRows<'a>[src]

pub fn get(&self, index: usize) -> Option<HtmlTableRowElement>[src]

pub fn find_by_id(&self, id: &str) -> Option<HtmlTableRowElement>[src]

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

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

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

pub fn first(&self) -> Option<HtmlTableRowElement>[src]

pub fn last(&self) -> Option<HtmlTableRowElement>[src]

pub fn push_new(&self) -> HtmlTableRowElement[src]

pub fn insert_new(
    &self,
    index: usize
) -> Result<HtmlTableRowElement, RangeError>
[src]

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

Important traits for TableSectionRowsIter<'a>
pub fn iter(&self) -> TableSectionRowsIter[src]

Trait Implementations

impl<'a> IntoIterator for TableSectionRows<'a>[src]

type Item = HtmlTableRowElement

The type of the elements being iterated over.

type IntoIter = TableSectionRowsIntoIter<'a>

Which kind of iterator are we turning this into?

impl<'a> Write for TableSectionRows<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TableSectionRows<'a>

impl<'a> !Send for TableSectionRows<'a>

impl<'a> !Sync for TableSectionRows<'a>

impl<'a> Unpin for TableSectionRows<'a>

impl<'a> UnwindSafe for TableSectionRows<'a>

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.