pub trait HTMLTableRowElementMethods<D: DomTypes> {
// Required methods
fn RowIndex(&self, cx: &mut JSContext) -> i32;
fn SectionRowIndex(&self, cx: &mut JSContext) -> i32;
fn Cells(&self, cx: &mut JSContext) -> DomRoot<D::HTMLCollection>;
fn InsertCell(
&self,
cx: &mut JSContext,
index: i32,
) -> Fallible<DomRoot<D::HTMLElement>>;
fn DeleteCell(&self, cx: &mut JSContext, index: i32) -> Fallible<()>;
fn BgColor(&self) -> DOMString;
fn SetBgColor(&self, cx: &mut JSContext, value: DOMString);
}Required Methods§
fn RowIndex(&self, cx: &mut JSContext) -> i32
fn SectionRowIndex(&self, cx: &mut JSContext) -> i32
fn Cells(&self, cx: &mut JSContext) -> DomRoot<D::HTMLCollection>
fn InsertCell( &self, cx: &mut JSContext, index: i32, ) -> Fallible<DomRoot<D::HTMLElement>>
fn DeleteCell(&self, cx: &mut JSContext, index: i32) -> Fallible<()>
fn BgColor(&self) -> DOMString
fn SetBgColor(&self, cx: &mut JSContext, value: DOMString)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".