windows::Win32::UI::Shell

Trait ITaskbarList_Impl

pub trait ITaskbarList_Impl: IUnknownImpl {
    // Required methods
    fn HrInit(&self) -> Result<()>;
    fn AddTab(&self, hwnd: HWND) -> Result<()>;
    fn DeleteTab(&self, hwnd: HWND) -> Result<()>;
    fn ActivateTab(&self, hwnd: HWND) -> Result<()>;
    fn SetActiveAlt(&self, hwnd: HWND) -> Result<()>;
}

Required Methods§

fn HrInit(&self) -> Result<()>

fn AddTab(&self, hwnd: HWND) -> Result<()>

fn DeleteTab(&self, hwnd: HWND) -> Result<()>

fn ActivateTab(&self, hwnd: HWND) -> Result<()>

fn SetActiveAlt(&self, hwnd: HWND) -> 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.

Implementors§