pub trait ICoreWebView2Controller3_Impl: Sized + ICoreWebView2Controller2_Impl {
    // Required methods
    fn RasterizationScale(&self, scale: *mut f64) -> Result<()>;
    fn SetRasterizationScale(&self, scale: f64) -> Result<()>;
    fn ShouldDetectMonitorScaleChanges(&self, value: *mut BOOL) -> Result<()>;
    fn SetShouldDetectMonitorScaleChanges(&self, value: BOOL) -> Result<()>;
    fn add_RasterizationScaleChanged(
        &self,
        eventhandler: Option<&ICoreWebView2RasterizationScaleChangedEventHandler>,
        token: *mut EventRegistrationToken,
    ) -> Result<()>;
    fn remove_RasterizationScaleChanged(
        &self,
        token: &EventRegistrationToken,
    ) -> Result<()>;
    fn BoundsMode(
        &self,
        boundsmode: *mut COREWEBVIEW2_BOUNDS_MODE,
    ) -> Result<()>;
    fn SetBoundsMode(&self, boundsmode: COREWEBVIEW2_BOUNDS_MODE) -> Result<()>;
}

Required Methods§

source

fn RasterizationScale(&self, scale: *mut f64) -> Result<()>

source

fn SetRasterizationScale(&self, scale: f64) -> Result<()>

source

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

source

fn SetShouldDetectMonitorScaleChanges(&self, value: BOOL) -> Result<()>

source

fn add_RasterizationScaleChanged( &self, eventhandler: Option<&ICoreWebView2RasterizationScaleChangedEventHandler>, token: *mut EventRegistrationToken, ) -> Result<()>

source

fn remove_RasterizationScaleChanged( &self, token: &EventRegistrationToken, ) -> Result<()>

source

fn BoundsMode(&self, boundsmode: *mut COREWEBVIEW2_BOUNDS_MODE) -> Result<()>

source

fn SetBoundsMode(&self, boundsmode: COREWEBVIEW2_BOUNDS_MODE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§