pub trait ICoreWebView2EnvironmentOptions4_Impl: IUnknownImpl {
// Required methods
fn GetCustomSchemeRegistrations(
&self,
count: *mut u32,
schemeregistrations: *mut *mut Option<ICoreWebView2CustomSchemeRegistration>,
) -> Result<(), Error>;
fn SetCustomSchemeRegistrations(
&self,
count: u32,
) -> Result<ICoreWebView2CustomSchemeRegistration, Error>;
}
Required Methods§
fn GetCustomSchemeRegistrations( &self, count: *mut u32, schemeregistrations: *mut *mut Option<ICoreWebView2CustomSchemeRegistration>, ) -> Result<(), Error>
fn SetCustomSchemeRegistrations( &self, count: u32, ) -> Result<ICoreWebView2CustomSchemeRegistration, Error>
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.