pub trait IDeferredCommand_Impl: Sized {
    // Required methods
    fn Cancel(&self) -> Result<()>;
    fn Confidence(&self) -> Result<i32>;
    fn Postpone(&self, newtime: f64) -> Result<()>;
    fn GetHResult(&self) -> Result<HRESULT>;
}

Required Methods§

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

fn Confidence(&self) -> Result<i32>

fn Postpone(&self, newtime: f64) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§