pub trait ICoreWebView2BasicAuthenticationRequestedEventArgs_Impl: IUnknownImpl {
// Required methods
fn Uri(&self, value: *mut PWSTR) -> Result<(), Error>;
fn Challenge(&self, challenge: *mut PWSTR) -> Result<(), Error>;
fn Response(
&self,
) -> Result<ICoreWebView2BasicAuthenticationResponse, Error>;
fn Cancel(&self, cancel: *mut BOOL) -> Result<(), Error>;
fn SetCancel(&self, cancel: BOOL) -> Result<(), Error>;
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral, Error>;
}
Required Methods§
fn Uri(&self, value: *mut PWSTR) -> Result<(), Error>
fn Challenge(&self, challenge: *mut PWSTR) -> Result<(), Error>
fn Response(&self) -> Result<ICoreWebView2BasicAuthenticationResponse, Error>
fn Cancel(&self, cancel: *mut BOOL) -> Result<(), Error>
fn SetCancel(&self, cancel: BOOL) -> Result<(), Error>
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral, 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.