Trait IInkPresenterStencil_Impl
pub trait IInkPresenterStencil_Impl: IUnknownImpl {
// Required methods
fn Kind(&self) -> Result<InkPresenterStencilKind>;
fn IsVisible(&self) -> Result<bool>;
fn SetIsVisible(&self, value: bool) -> Result<()>;
fn BackgroundColor(&self) -> Result<Color>;
fn SetBackgroundColor(&self, value: &Color) -> Result<()>;
fn ForegroundColor(&self) -> Result<Color>;
fn SetForegroundColor(&self, value: &Color) -> Result<()>;
fn Transform(&self) -> Result<Matrix3x2>;
fn SetTransform(&self, value: &Matrix3x2) -> Result<()>;
}
Required Methods§
fn Kind(&self) -> Result<InkPresenterStencilKind>
fn IsVisible(&self) -> Result<bool>
fn SetIsVisible(&self, value: bool) -> Result<()>
fn BackgroundColor(&self) -> Result<Color>
fn SetBackgroundColor(&self, value: &Color) -> Result<()>
fn ForegroundColor(&self) -> Result<Color>
fn SetForegroundColor(&self, value: &Color) -> Result<()>
fn Transform(&self) -> Result<Matrix3x2>
fn SetTransform(&self, value: &Matrix3x2) -> 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.