pub trait ICoreWebView2BasicAuthenticationResponse_Impl: Sized {
    // Required methods
    fn UserName(&self, username: *mut PWSTR) -> Result<(), Error>;
    fn SetUserName(&self, username: &PCWSTR) -> Result<(), Error>;
    fn Password(&self, password: *mut PWSTR) -> Result<(), Error>;
    fn SetPassword(&self, password: &PCWSTR) -> Result<(), Error>;
}

Required Methods§

source

fn UserName(&self, username: *mut PWSTR) -> Result<(), Error>

source

fn SetUserName(&self, username: &PCWSTR) -> Result<(), Error>

source

fn Password(&self, password: *mut PWSTR) -> Result<(), Error>

source

fn SetPassword(&self, password: &PCWSTR) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§