pub trait INetConnectionConnectUi_Impl: Sized {
    // Required methods
    fn SetConnection(&self, pcon: Option<&INetConnection>) -> Result<()>;
    fn Connect(&self, hwndparent: HWND, dwflags: u32) -> Result<()>;
    fn Disconnect(&self, hwndparent: HWND, dwflags: u32) -> Result<()>;
}

Required Methods§

fn SetConnection(&self, pcon: Option<&INetConnection>) -> Result<()>

fn Connect(&self, hwndparent: HWND, dwflags: u32) -> Result<()>

fn Disconnect(&self, hwndparent: HWND, dwflags: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§