pub trait ICoreWebView2Settings4_Impl: Sized + ICoreWebView2Settings3_Impl {
    // Required methods
    fn IsPasswordAutosaveEnabled(&self, value: *mut BOOL) -> Result<()>;
    fn SetIsPasswordAutosaveEnabled(&self, value: BOOL) -> Result<()>;
    fn IsGeneralAutofillEnabled(&self, value: *mut BOOL) -> Result<()>;
    fn SetIsGeneralAutofillEnabled(&self, value: BOOL) -> Result<()>;
}

Required Methods§

source

fn IsPasswordAutosaveEnabled(&self, value: *mut BOOL) -> Result<()>

source

fn SetIsPasswordAutosaveEnabled(&self, value: BOOL) -> Result<()>

source

fn IsGeneralAutofillEnabled(&self, value: *mut BOOL) -> Result<()>

source

fn SetIsGeneralAutofillEnabled(&self, value: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§