Skip to main content

InputAction

Trait InputAction 

Source
pub trait InputAction:
    Copy
    + Eq
    + Hash
    + Send
    + Sync
    + 'static { }

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.

Implementors§

Source§

impl<T> InputAction for T
where T: Copy + Eq + Hash + Send + Sync + 'static,