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

Required Methods§

source

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

source

fn Length(&self) -> u32

source

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

Implementors§