pub trait HTMLTableCellElementMethods<D: DomTypes> {
// Required methods
fn ColSpan(&self) -> u32;
fn SetColSpan(&self, cx: &mut JSContext, value: u32);
fn RowSpan(&self) -> u32;
fn SetRowSpan(&self, cx: &mut JSContext, value: u32);
fn CellIndex(&self) -> i32;
fn Height(&self) -> DOMString;
fn SetHeight(&self, cx: &mut JSContext, value: DOMString);
fn Width(&self) -> DOMString;
fn SetWidth(&self, cx: &mut JSContext, value: DOMString);
fn BgColor(&self) -> DOMString;
fn SetBgColor(&self, cx: &mut JSContext, value: DOMString);
}Required Methods§
fn ColSpan(&self) -> u32
fn SetColSpan(&self, cx: &mut JSContext, value: u32)
fn RowSpan(&self) -> u32
fn SetRowSpan(&self, cx: &mut JSContext, value: u32)
fn CellIndex(&self) -> i32
fn Height(&self) -> DOMString
fn SetHeight(&self, cx: &mut JSContext, value: DOMString)
fn Width(&self) -> DOMString
fn SetWidth(&self, cx: &mut JSContext, value: DOMString)
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".