webview2_com_sys::Microsoft::Web::WebView2::Win32

Trait ICoreWebView2BasicAuthenticationRequestedEventArgs_Impl

Source
pub trait ICoreWebView2BasicAuthenticationRequestedEventArgs_Impl: IUnknownImpl {
    // Required methods
    fn Uri(&self, value: *mut PWSTR) -> Result<()>;
    fn Challenge(&self, challenge: *mut PWSTR) -> Result<()>;
    fn Response(&self) -> Result<ICoreWebView2BasicAuthenticationResponse>;
    fn Cancel(&self, cancel: *mut BOOL) -> Result<()>;
    fn SetCancel(&self, cancel: BOOL) -> Result<()>;
    fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}

Required Methods§

Source

fn Uri(&self, value: *mut PWSTR) -> Result<()>

Source

fn Challenge(&self, challenge: *mut PWSTR) -> Result<()>

Source

fn Response(&self) -> Result<ICoreWebView2BasicAuthenticationResponse>

Source

fn Cancel(&self, cancel: *mut BOOL) -> Result<()>

Source

fn SetCancel(&self, cancel: BOOL) -> Result<()>

Source

fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>

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.

Implementors§