Trait windows::Networking::Vpn::IVpnCustomPrompt_Impl

pub trait IVpnCustomPrompt_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§