pub trait HTMLHRElementMethods<D: DomTypes> {
    // Required methods
    fn Align(&self) -> DOMString;
    fn SetAlign(&self, value: DOMString);
    fn Color(&self) -> DOMString;
    fn SetColor(&self, value: DOMString);
    fn NoShade(&self) -> bool;
    fn SetNoShade(&self, value: bool);
    fn Size(&self) -> DOMString;
    fn SetSize(&self, value: DOMString);
    fn Width(&self) -> DOMString;
    fn SetWidth(&self, value: DOMString);
}

Required Methods§

Source

fn Align(&self) -> DOMString

Source

fn SetAlign(&self, value: DOMString)

Source

fn Color(&self) -> DOMString

Source

fn SetColor(&self, value: DOMString)

Source

fn NoShade(&self) -> bool

Source

fn SetNoShade(&self, value: bool)

Source

fn Size(&self) -> DOMString

Source

fn SetSize(&self, value: DOMString)

Source

fn Width(&self) -> DOMString

Source

fn SetWidth(&self, value: DOMString)

Implementors§