pub trait IAsyncInfo_Impl: Sized {
    // Required methods
    fn Id(&self) -> Result<u32>;
    fn Status(&self) -> Result<AsyncStatus>;
    fn ErrorCode(&self) -> Result<HRESULT>;
    fn Cancel(&self) -> Result<()>;
    fn Close(&self) -> Result<()>;
}

Required Methods§

fn Id(&self) -> Result<u32>

fn Status(&self) -> Result<AsyncStatus>

fn ErrorCode(&self) -> Result<HRESULT>

fn Cancel(&self) -> Result<()>

fn Close(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§