pub trait IAccessibilityDockingService_Impl: Sized {
    // Required methods
    fn GetAvailableSize(
        &self,
        hmonitor: HMONITOR,
        pcxfixed: *mut u32,
        pcymax: *mut u32
    ) -> Result<()>;
    fn DockWindow(
        &self,
        hwnd: HWND,
        hmonitor: HMONITOR,
        cyrequested: u32,
        pcallback: Option<&IAccessibilityDockingServiceCallback>
    ) -> Result<()>;
    fn UndockWindow(&self, hwnd: HWND) -> Result<()>;
}

Required Methods§

fn GetAvailableSize( &self, hmonitor: HMONITOR, pcxfixed: *mut u32, pcymax: *mut u32 ) -> Result<()>

fn DockWindow( &self, hwnd: HWND, hmonitor: HMONITOR, cyrequested: u32, pcallback: Option<&IAccessibilityDockingServiceCallback> ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§