Trait FromRawGameEvent

Source
pub trait FromRawGameEvent: Sized {
    // Required method
    fn from_raw_event(values: Vec<GameEventValue>) -> Result<Self>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: FromRawGameEvent> FromRawGameEvent for Box<T>

Implementors§