[][src]Trait guion_sdl2::event::destination::SDLDestination

pub trait SDLDestination: GuionDestination {
    const JOYPAD: Self;
    const CONTROLLER: Self;
    const GESTURE: Self;
    const FINGER: Self;
    const APP: Self;
    const WINDOW: Self;
    const KEYBOARD: Self;
    const TEXT_OP: Self;
    const MOUSE: Self;
    const WHEEL: Self;
    const CLIPBOARD_UPDATE: Self;
    const DND: Self;
    const USER: Self;
    const UNKNOWN: Self;
    fn destination_of(e: &SDLEvent) -> Self { ... }
}

Associated Constants

const JOYPAD: Self

const CONTROLLER: Self

const GESTURE: Self

const FINGER: Self

const APP: Self

const WINDOW: Self

const KEYBOARD: Self

const TEXT_OP: Self

const MOUSE: Self

const WHEEL: Self

const CLIPBOARD_UPDATE: Self

const DND: Self

const USER: Self

const UNKNOWN: Self

Loading content...

Provided methods

fn destination_of(e: &SDLEvent) -> Self

Loading content...

Implementors

impl<D> SDLDestination for StdDest<D> where
    D: GuionDestination
[src]

Loading content...