pub trait IFontCacheNotify_Impl: IUnknownImpl {
// Required methods
fn OnPreFontChange(&self) -> Result<(), Error>;
fn OnPostFontChange(&self) -> Result<(), Error>;
}Required Methods§
fn OnPreFontChange(&self) -> Result<(), Error>
fn OnPostFontChange(&self) -> Result<(), Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".