webview2_com_sys::Microsoft::Web::WebView2::Win32

Trait ICoreWebView2WindowFeatures_Impl

Source
pub trait ICoreWebView2WindowFeatures_Impl: IUnknownImpl {
    // Required methods
    fn HasPosition(&self, value: *mut BOOL) -> Result<()>;
    fn HasSize(&self, value: *mut BOOL) -> Result<()>;
    fn Left(&self, value: *mut u32) -> Result<()>;
    fn Top(&self, value: *mut u32) -> Result<()>;
    fn Height(&self, value: *mut u32) -> Result<()>;
    fn Width(&self, value: *mut u32) -> Result<()>;
    fn ShouldDisplayMenuBar(&self, value: *mut BOOL) -> Result<()>;
    fn ShouldDisplayStatus(&self, value: *mut BOOL) -> Result<()>;
    fn ShouldDisplayToolbar(&self, value: *mut BOOL) -> Result<()>;
    fn ShouldDisplayScrollBars(&self, value: *mut BOOL) -> Result<()>;
}

Required Methods§

Source

fn HasPosition(&self, value: *mut BOOL) -> Result<()>

Source

fn HasSize(&self, value: *mut BOOL) -> Result<()>

Source

fn Left(&self, value: *mut u32) -> Result<()>

Source

fn Top(&self, value: *mut u32) -> Result<()>

Source

fn Height(&self, value: *mut u32) -> Result<()>

Source

fn Width(&self, value: *mut u32) -> Result<()>

Source

fn ShouldDisplayMenuBar(&self, value: *mut BOOL) -> Result<()>

Source

fn ShouldDisplayStatus(&self, value: *mut BOOL) -> Result<()>

Source

fn ShouldDisplayToolbar(&self, value: *mut BOOL) -> Result<()>

Source

fn ShouldDisplayScrollBars(&self, value: *mut BOOL) -> 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.

Implementors§