Trait IVpnCustomPrompt_Impl
pub trait IVpnCustomPrompt_Impl: IUnknownImpl {
// Required methods
fn SetLabel(&self, value: &HSTRING) -> Result<()>;
fn Label(&self) -> Result<HSTRING>;
fn SetCompulsory(&self, value: bool) -> Result<()>;
fn Compulsory(&self) -> Result<bool>;
fn SetBordered(&self, value: bool) -> Result<()>;
fn Bordered(&self) -> Result<bool>;
}
Required Methods§
fn SetLabel(&self, value: &HSTRING) -> Result<()>
fn Label(&self) -> Result<HSTRING>
fn SetCompulsory(&self, value: bool) -> Result<()>
fn Compulsory(&self) -> Result<bool>
fn SetBordered(&self, value: bool) -> Result<()>
fn Bordered(&self) -> Result<bool>
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.