pub(crate) trait GamepadButtonListMethods<D: DomTypes> {
    // Required methods
    fn Item(&self, index: u32) -> Option<DomRoot<D::GamepadButton>>;
    fn Length(&self) -> u32;
    fn IndexedGetter(&self, index: u32) -> Option<DomRoot<D::GamepadButton>>;
}

Required Methods§

Source

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

Source

fn Length(&self) -> u32

Source

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

Implementors§