pub trait ITaskbarList_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§