Trait IVisualProperties_Impl
pub trait IVisualProperties_Impl: IUnknownImpl {
// Required methods
fn SetWatermark(&self, hbmp: HBITMAP, vpwf: VPWATERMARKFLAGS) -> Result<()>;
fn SetColor(&self, vpcf: VPCOLORFLAGS, cr: COLORREF) -> Result<()>;
fn GetColor(&self, vpcf: VPCOLORFLAGS) -> Result<COLORREF>;
fn SetItemHeight(&self, cyiteminpixels: i32) -> Result<()>;
fn GetItemHeight(&self) -> Result<i32>;
fn SetFont(&self, plf: *const LOGFONTW, bredraw: BOOL) -> Result<()>;
fn GetFont(&self, plf: *mut LOGFONTW) -> Result<()>;
fn SetTheme(
&self,
pszsubappname: &PCWSTR,
pszsubidlist: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn SetWatermark(&self, hbmp: HBITMAP, vpwf: VPWATERMARKFLAGS) -> Result<()>
fn SetColor(&self, vpcf: VPCOLORFLAGS, cr: COLORREF) -> Result<()>
fn GetColor(&self, vpcf: VPCOLORFLAGS) -> Result<COLORREF>
fn SetItemHeight(&self, cyiteminpixels: i32) -> Result<()>
fn GetItemHeight(&self) -> Result<i32>
fn SetFont(&self, plf: *const LOGFONTW, bredraw: BOOL) -> Result<()>
fn GetFont(&self, plf: *mut LOGFONTW) -> Result<()>
fn SetTheme(&self, pszsubappname: &PCWSTR, pszsubidlist: &PCWSTR) -> 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.