pub trait ICoreWebView2EnvironmentOptions7_Impl: IUnknownImpl {
// Required methods
fn ChannelSearchKind(&self) -> Result<COREWEBVIEW2_CHANNEL_SEARCH_KIND>;
fn SetChannelSearchKind(
&self,
value: COREWEBVIEW2_CHANNEL_SEARCH_KIND,
) -> Result<()>;
fn ReleaseChannels(&self) -> Result<COREWEBVIEW2_RELEASE_CHANNELS>;
fn SetReleaseChannels(
&self,
value: COREWEBVIEW2_RELEASE_CHANNELS,
) -> Result<()>;
}Required Methods§
fn ChannelSearchKind(&self) -> Result<COREWEBVIEW2_CHANNEL_SEARCH_KIND>
fn SetChannelSearchKind( &self, value: COREWEBVIEW2_CHANNEL_SEARCH_KIND, ) -> Result<()>
fn ReleaseChannels(&self) -> Result<COREWEBVIEW2_RELEASE_CHANNELS>
fn SetReleaseChannels(&self, value: COREWEBVIEW2_RELEASE_CHANNELS) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".