Trait IRepetitionPattern_Impl
pub trait IRepetitionPattern_Impl: 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.