pub trait TouchEventMethods {
    // Required methods
    fn Touches(&self) -> Root<Dom<TouchList>>;
    fn TargetTouches(&self) -> Root<Dom<TouchList>>;
    fn ChangedTouches(&self) -> Root<Dom<TouchList>>;
    fn AltKey(&self) -> bool;
    fn MetaKey(&self) -> bool;
    fn CtrlKey(&self) -> bool;
    fn ShiftKey(&self) -> bool;
    fn IsTrusted(&self) -> bool;
}

Required Methods§

Implementors§