Trait IPropertyPage_Impl
pub trait IPropertyPage_Impl: IUnknownImpl {
// Required methods
fn SetPageSite(&self, ppagesite: Ref<'_, IPropertyPageSite>) -> Result<()>;
fn Activate(
&self,
hwndparent: HWND,
prect: *const RECT,
bmodal: BOOL,
) -> Result<()>;
fn Deactivate(&self) -> Result<()>;
fn GetPageInfo(&self, ppageinfo: *mut PROPPAGEINFO) -> Result<()>;
fn SetObjects(
&self,
cobjects: u32,
ppunk: *const Option<IUnknown>,
) -> Result<()>;
fn Show(&self, ncmdshow: u32) -> Result<()>;
fn Move(&self, prect: *const RECT) -> Result<()>;
fn IsPageDirty(&self) -> Result<()>;
fn Apply(&self) -> Result<()>;
fn Help(&self, pszhelpdir: &PCWSTR) -> Result<()>;
fn TranslateAccelerator(&self, pmsg: *const MSG) -> Result<()>;
}
Required Methods§
fn SetPageSite(&self, ppagesite: Ref<'_, IPropertyPageSite>) -> Result<()>
fn Activate( &self, hwndparent: HWND, prect: *const RECT, bmodal: BOOL, ) -> Result<()>
fn Deactivate(&self) -> Result<()>
fn GetPageInfo(&self, ppageinfo: *mut PROPPAGEINFO) -> Result<()>
fn SetObjects( &self, cobjects: u32, ppunk: *const Option<IUnknown>, ) -> Result<()>
fn Show(&self, ncmdshow: u32) -> Result<()>
fn Move(&self, prect: *const RECT) -> Result<()>
fn IsPageDirty(&self) -> Result<()>
fn Apply(&self) -> Result<()>
fn Help(&self, pszhelpdir: &PCWSTR) -> Result<()>
fn TranslateAccelerator(&self, pmsg: *const MSG) -> 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.