Skip to main content

InspectInput

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".

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§