pub trait ICoreWebView2BasicAuthenticationResponse_Impl {
    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

Implementors