pub trait IRepetitionPattern_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Interval(&self, pinterval: *mut BSTR) -> Result<()>;
    fn SetInterval(&self, interval: &BSTR) -> Result<()>;
    fn Duration(&self, pduration: *mut BSTR) -> Result<()>;
    fn SetDuration(&self, duration: &BSTR) -> Result<()>;
    fn StopAtDurationEnd(&self, pstop: *mut VARIANT_BOOL) -> Result<()>;
    fn SetStopAtDurationEnd(&self, stop: VARIANT_BOOL) -> Result<()>;
}

Required Methods§

fn Interval(&self, pinterval: *mut BSTR) -> Result<()>

fn SetInterval(&self, interval: &BSTR) -> Result<()>

fn Duration(&self, pduration: *mut BSTR) -> Result<()>

fn SetDuration(&self, duration: &BSTR) -> Result<()>

fn StopAtDurationEnd(&self, pstop: *mut VARIANT_BOOL) -> Result<()>

fn SetStopAtDurationEnd(&self, stop: VARIANT_BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§