pub trait MediaListMethods<D: DomTypes> {
    // Required methods
    fn MediaText(&self) -> DOMString;
    fn SetMediaText(&self, value: DOMString);
    fn Length(&self) -> u32;
    fn Item(&self, index: u32) -> Option<DOMString>;
    fn AppendMedium(&self, medium: DOMString);
    fn DeleteMedium(&self, medium: DOMString);
    fn IndexedGetter(&self, index: u32) -> Option<DOMString>;
}

Required Methods§

Source

fn MediaText(&self) -> DOMString

Source

fn SetMediaText(&self, value: DOMString)

Source

fn Length(&self) -> u32

Source

fn Item(&self, index: u32) -> Option<DOMString>

Source

fn AppendMedium(&self, medium: DOMString)

Source

fn DeleteMedium(&self, medium: DOMString)

Source

fn IndexedGetter(&self, index: u32) -> Option<DOMString>

Implementors§