pub trait IWebAccount_Impl: Sized {
    // Required methods
    fn WebAccountProvider(&self) -> Result<WebAccountProvider>;
    fn UserName(&self) -> Result<HSTRING>;
    fn State(&self) -> Result<WebAccountState>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§