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

Required Methods§

Source

fn Refresh(&self, reload: bool)

Source

fn Length(&self) -> u32

Source

fn Item(&self, index: u32) -> Option<DomRoot<D::Plugin>>

Source

fn NamedItem(&self, name: DOMString) -> Option<DomRoot<D::Plugin>>

Source

fn IndexedGetter(&self, index: u32) -> Option<DomRoot<D::Plugin>>

Source

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

Source

fn NamedGetter(&self, name: DOMString) -> Option<DomRoot<D::Plugin>>

Implementors§