Trait bevy_impulse::input::InspectInput

source ·
pub trait InspectInput {
    // Required method
    fn has_input<T: 'static + Send + Sync>(
        &self,
        session: Entity,
    ) -> Result<bool, OperationError>;
}

Required Methods§

source

fn has_input<T: 'static + Send + Sync>( &self, session: Entity, ) -> Result<bool, OperationError>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> InspectInput for EntityRef<'a>

source§

fn has_input<T: 'static + Send + Sync>( &self, session: Entity, ) -> Result<bool, OperationError>

source§

impl<'a> InspectInput for EntityWorldMut<'a>

source§

fn has_input<T: 'static + Send + Sync>( &self, session: Entity, ) -> Result<bool, OperationError>

Implementors§