Trait IViewObjectPresentFlipSite_Impl
pub trait IViewObjectPresentFlipSite_Impl: IUnknownImpl {
// Required methods
fn GetDeviceLuid(&self) -> Result<LUID>;
fn EnterFullScreen(&self) -> Result<()>;
fn ExitFullScreen(&self) -> Result<()>;
fn IsFullScreen(&self) -> Result<BOOL>;
fn GetBoundingRect(&self) -> Result<RECT>;
fn GetMetrics(
&self,
ppos: *mut POINT,
psize: *mut SIZE,
pscalex: *mut f32,
pscaley: *mut f32,
) -> Result<()>;
fn GetFullScreenSize(&self) -> Result<SIZE>;
}
Required Methods§
fn GetDeviceLuid(&self) -> Result<LUID>
fn EnterFullScreen(&self) -> Result<()>
fn ExitFullScreen(&self) -> Result<()>
fn IsFullScreen(&self) -> Result<BOOL>
fn GetBoundingRect(&self) -> Result<RECT>
fn GetMetrics( &self, ppos: *mut POINT, psize: *mut SIZE, pscalex: *mut f32, pscaley: *mut f32, ) -> Result<()>
fn GetFullScreenSize(&self) -> Result<SIZE>
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.