Trait IQuerySolution_Impl
pub trait IQuerySolution_Impl: IConditionFactory_Impl {
// Required methods
fn GetQuery(
&self,
ppquerynode: OutRef<'_, ICondition>,
ppmaintype: OutRef<'_, IEntity>,
) -> Result<()>;
fn GetErrors(
&self,
riid: *const GUID,
ppparseerrors: *mut *mut c_void,
) -> Result<()>;
fn GetLexicalData(
&self,
ppszinputstring: *mut PWSTR,
pptokens: OutRef<'_, ITokenCollection>,
plcid: *mut u32,
ppwordbreaker: OutRef<'_, IUnknown>,
) -> Result<()>;
}
Required Methods§
fn GetQuery( &self, ppquerynode: OutRef<'_, ICondition>, ppmaintype: OutRef<'_, IEntity>, ) -> Result<()>
fn GetErrors( &self, riid: *const GUID, ppparseerrors: *mut *mut c_void, ) -> Result<()>
fn GetLexicalData( &self, ppszinputstring: *mut PWSTR, pptokens: OutRef<'_, ITokenCollection>, plcid: *mut u32, ppwordbreaker: OutRef<'_, IUnknown>, ) -> Result<()>
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.