pub trait InspectInput {
// Required method
fn has_input<T: 'static + Send + Sync>(
&self,
session: Entity,
) -> Result<bool, OperationError>;
}
Required Methods§
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.