pub trait HTMLTableSectionElementMethods<D: DomTypes> {
// Required methods
fn Rows(&self, cx: &mut JSContext) -> DomRoot<D::HTMLCollection>;
fn InsertRow(
&self,
cx: &mut JSContext,
index: i32,
) -> Fallible<DomRoot<D::HTMLElement>>;
fn DeleteRow(&self, cx: &mut JSContext, index: i32) -> Fallible<()>;
}Required Methods§
fn Rows(&self, cx: &mut JSContext) -> DomRoot<D::HTMLCollection>
fn InsertRow( &self, cx: &mut JSContext, index: i32, ) -> Fallible<DomRoot<D::HTMLElement>>
fn DeleteRow(&self, cx: &mut JSContext, index: i32) -> Fallible<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".