pub trait ISearchResultHandler_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn is_result_included(self, result: SearchResult) -> bool
where Self: Sized + Into<IlInstance> { ... }
fn create_object(self, result: SearchResult) -> T0
where Self: Sized + Into<IlInstance> { ... }
fn ctor(self)
where Self: Sized { ... }
}Provided Methods§
fn is_result_included(self, result: SearchResult) -> boolwhere
Self: Sized + Into<IlInstance>,
fn create_object(self, result: SearchResult) -> T0where
Self: Sized + Into<IlInstance>,
fn ctor(self)where
Self: Sized,
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.