pub struct WindowFeatures { /* private fields */ }
Expand description
Wrapper for ICoreWebView2WindowFeatures
.
Implementations§
Source§impl WindowFeatures
impl WindowFeatures
pub fn into_inner(self) -> ComRc<dyn ICoreWebView2WindowFeatures>
pub fn as_inner(&self) -> &ComRc<dyn ICoreWebView2WindowFeatures>
Source§impl WindowFeatures
impl WindowFeatures
pub fn get_has_position(&self) -> Result<bool>
pub fn get_has_size(&self) -> Result<bool>
pub fn get_left(&self) -> Result<u32>
pub fn get_top(&self) -> Result<u32>
pub fn get_height(&self) -> Result<u32>
pub fn get_width(&self) -> Result<u32>
pub fn get_should_display_status(&self) -> Result<bool>
pub fn get_should_display_toolbar(&self) -> Result<bool>
pub fn get_should_display_scroll_bars(&self) -> Result<bool>
Trait Implementations§
Source§impl Clone for WindowFeatures
impl Clone for WindowFeatures
Source§fn clone(&self) -> WindowFeatures
fn clone(&self) -> WindowFeatures
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WindowFeatures
impl Debug for WindowFeatures
Source§impl From<ComRc<dyn ICoreWebView2WindowFeatures>> for WindowFeatures
impl From<ComRc<dyn ICoreWebView2WindowFeatures>> for WindowFeatures
Source§fn from(inner: ComRc<dyn ICoreWebView2WindowFeatures>) -> Self
fn from(inner: ComRc<dyn ICoreWebView2WindowFeatures>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WindowFeatures
impl !RefUnwindSafe for WindowFeatures
impl !Send for WindowFeatures
impl !Sync for WindowFeatures
impl !Unpin for WindowFeatures
impl !UnwindSafe for WindowFeatures
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more