pub trait ICancelMethodCalls_Impl: Sized {
    // Required methods
    fn Cancel(&self, ulseconds: u32) -> Result<()>;
    fn TestCancel(&self) -> Result<()>;
}

Required Methods§

fn Cancel(&self, ulseconds: u32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§