pub trait IInputPanelWindowHandle_Impl: Sized {
    // Required methods
    fn AttachedEditWindow32(&self) -> Result<i32>;
    fn SetAttachedEditWindow32(&self, attachededitwindow: i32) -> Result<()>;
    fn AttachedEditWindow64(&self) -> Result<i64>;
    fn SetAttachedEditWindow64(&self, attachededitwindow: i64) -> Result<()>;
}

Required Methods§

fn AttachedEditWindow32(&self) -> Result<i32>

fn SetAttachedEditWindow32(&self, attachededitwindow: i32) -> Result<()>

fn AttachedEditWindow64(&self) -> Result<i64>

fn SetAttachedEditWindow64(&self, attachededitwindow: i64) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§