Trait IGestureRecognizer_Impl
pub trait IGestureRecognizer_Impl: IUnknownImpl {
// Required methods
fn Enabled(&self) -> Result<BOOL>;
fn SetEnabled(&self, fenabled: BOOL) -> Result<()>;
fn MaxStrokeCount(&self) -> Result<i32>;
fn SetMaxStrokeCount(&self, cstrokes: i32) -> Result<()>;
fn EnableGestures(
&self,
cgestures: u32,
pgestures: *const i32,
) -> Result<()>;
fn Reset(&self) -> Result<()>;
}
Required Methods§
fn Enabled(&self) -> Result<BOOL>
fn SetEnabled(&self, fenabled: BOOL) -> Result<()>
fn MaxStrokeCount(&self) -> Result<i32>
fn SetMaxStrokeCount(&self, cstrokes: i32) -> Result<()>
fn EnableGestures(&self, cgestures: u32, pgestures: *const i32) -> Result<()>
fn Reset(&self) -> 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.