pub trait EventPayload {
const ID: EventType;
const LARGE: bool;
const NAME: &'static str;
// Provided method
fn direction() -> EventDirection { ... }
}
Required Associated Constants§
Provided Methods§
fn direction() -> EventDirection
Object Safety§
This trait is not object safe.