Trait IRpcOptions_Impl
pub trait IRpcOptions_Impl: IUnknownImpl {
// Required methods
fn Set(
&self,
pprx: Ref<'_, IUnknown>,
dwproperty: RPCOPT_PROPERTIES,
dwvalue: usize,
) -> Result<()>;
fn Query(
&self,
pprx: Ref<'_, IUnknown>,
dwproperty: RPCOPT_PROPERTIES,
) -> Result<usize>;
}
Required Methods§
fn Set( &self, pprx: Ref<'_, IUnknown>, dwproperty: RPCOPT_PROPERTIES, dwvalue: usize, ) -> Result<()>
fn Query( &self, pprx: Ref<'_, IUnknown>, dwproperty: RPCOPT_PROPERTIES, ) -> Result<usize>
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.