Trait 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>

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<'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§