pub trait ICoreWebView2WindowFeatures_Impl: Sized {
// Required methods
fn HasPosition(&self, value: *mut BOOL) -> Result<(), Error>;
fn HasSize(&self, value: *mut BOOL) -> Result<(), Error>;
fn Left(&self, value: *mut u32) -> Result<(), Error>;
fn Top(&self, value: *mut u32) -> Result<(), Error>;
fn Height(&self, value: *mut u32) -> Result<(), Error>;
fn Width(&self, value: *mut u32) -> Result<(), Error>;
fn ShouldDisplayMenuBar(&self, value: *mut BOOL) -> Result<(), Error>;
fn ShouldDisplayStatus(&self, value: *mut BOOL) -> Result<(), Error>;
fn ShouldDisplayToolbar(&self, value: *mut BOOL) -> Result<(), Error>;
fn ShouldDisplayScrollBars(&self, value: *mut BOOL) -> Result<(), Error>;
}
Required Methods§
fn HasPosition(&self, value: *mut BOOL) -> Result<(), Error>
fn HasSize(&self, value: *mut BOOL) -> Result<(), Error>
fn Left(&self, value: *mut u32) -> Result<(), Error>
fn Top(&self, value: *mut u32) -> Result<(), Error>
fn Height(&self, value: *mut u32) -> Result<(), Error>
fn Width(&self, value: *mut u32) -> Result<(), Error>
fn ShouldDisplayMenuBar(&self, value: *mut BOOL) -> Result<(), Error>
fn ShouldDisplayStatus(&self, value: *mut BOOL) -> Result<(), Error>
fn ShouldDisplayToolbar(&self, value: *mut BOOL) -> Result<(), Error>
fn ShouldDisplayScrollBars(&self, value: *mut BOOL) -> Result<(), Error>
Object Safety§
This trait is not object safe.