pub trait IStringResultHandlerMethods: IStringResultHandler {
// Provided methods
fn ctor(self, include_files: impl Into<bool>, include_dirs: impl Into<bool>) { ... }
fn is_result_included(self, result: impl Into<SearchResult>) -> bool { ... }
fn create_object(self, result: impl Into<SearchResult>) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor(self, include_files: impl Into<bool>, include_dirs: impl Into<bool>)
fn ctor(self, include_files: impl Into<bool>, include_dirs: impl Into<bool>)
.ctor(bool, bool) overload
Sourcefn is_result_included(self, result: impl Into<SearchResult>) -> bool
fn is_result_included(self, result: impl Into<SearchResult>) -> bool
IsResultIncluded(crate::system::io::searchresult::SearchResult) overload
Sourcefn create_object(self, result: impl Into<SearchResult>) -> Il2CppString
fn create_object(self, result: impl Into<SearchResult>) -> Il2CppString
CreateObject(crate::system::io::searchresult::SearchResult) overload
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.
Implementors§
impl<__T: IStringResultHandler> IStringResultHandlerMethods for __T
Available on crate feature
system-io-stringresulthandler only.