Trait IAccessibilityDockingService_Impl
pub trait IAccessibilityDockingService_Impl: IUnknownImpl {
// Required methods
fn GetAvailableSize(
&self,
hmonitor: HMONITOR,
pcxfixed: *mut u32,
pcymax: *mut u32,
) -> Result<()>;
fn DockWindow(
&self,
hwnd: HWND,
hmonitor: HMONITOR,
cyrequested: u32,
pcallback: Ref<'_, 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: Ref<'_, IAccessibilityDockingServiceCallback>, ) -> Result<()>
fn UndockWindow(&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.