pub trait PluginArrayMethods {
    // Required methods
    fn Refresh(&self, reload: bool);
    fn Length(&self) -> u32;
    fn Item(&self, index: u32) -> Option<Root<Dom<Plugin>>>;
    fn NamedItem(&self, name: DOMString) -> Option<Root<Dom<Plugin>>>;
    fn IndexedGetter(&self, index: u32) -> Option<Root<Dom<Plugin>>>;
    fn SupportedPropertyNames(&self) -> Vec<DOMString>;
    fn NamedGetter(&self, name: DOMString) -> Option<Root<Dom<Plugin>>>;
}

Required Methods§

source

fn Refresh(&self, reload: bool)

source

fn Length(&self) -> u32

source

fn Item(&self, index: u32) -> Option<Root<Dom<Plugin>>>

source

fn NamedItem(&self, name: DOMString) -> Option<Root<Dom<Plugin>>>

source

fn IndexedGetter(&self, index: u32) -> Option<Root<Dom<Plugin>>>

source

fn SupportedPropertyNames(&self) -> Vec<DOMString>

source

fn NamedGetter(&self, name: DOMString) -> Option<Root<Dom<Plugin>>>

Implementors§