pub trait HTMLTableSectionElementMethods {
    // Required methods
    fn Rows(&self) -> Root<Dom<HTMLCollection>>;
    fn InsertRow(
        &self,
        index: i32,
        _can_gc: CanGc,
    ) -> Result<Root<Dom<HTMLElement>>, Error>;
    fn DeleteRow(&self, index: i32) -> Result<(), Error>;
}

Required Methods§

source

fn Rows(&self) -> Root<Dom<HTMLCollection>>

source

fn InsertRow( &self, index: i32, _can_gc: CanGc, ) -> Result<Root<Dom<HTMLElement>>, Error>

source

fn DeleteRow(&self, index: i32) -> Result<(), Error>

Implementors§