pub trait IDeskBar_Impl: Sized + IOleWindow_Impl {
    // Required methods
    fn SetClient(&self, punkclient: Option<&IUnknown>) -> Result<()>;
    fn GetClient(&self) -> Result<IUnknown>;
    fn OnPosRectChangeDB(&self, prc: *const RECT) -> Result<()>;
}

Required Methods§

fn SetClient(&self, punkclient: Option<&IUnknown>) -> Result<()>

fn GetClient(&self) -> Result<IUnknown>

fn OnPosRectChangeDB(&self, prc: *const RECT) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§