pub trait IManagedObjectInfo_Impl: Sized {
// Required methods
fn GetIUnknown(&self) -> Result<IUnknown>;
fn GetIObjectControl(&self) -> Result<IObjectControl>;
fn SetInPool(
&self,
binpool: BOOL,
ppooledobj: Option<&IManagedPooledObj>,
) -> Result<()>;
fn SetWrapperStrength(&self, bstrong: BOOL) -> Result<()>;
}
Required Methods§
fn GetIUnknown(&self) -> Result<IUnknown>
fn GetIObjectControl(&self) -> Result<IObjectControl>
fn SetInPool( &self, binpool: BOOL, ppooledobj: Option<&IManagedPooledObj>, ) -> Result<()>
fn SetWrapperStrength(&self, bstrong: BOOL) -> Result<()>
Object Safety§
This trait is not object safe.