Trait IMFTimecodeTranslate_Impl
pub trait IMFTimecodeTranslate_Impl: IUnknownImpl {
// Required methods
fn BeginConvertTimecodeToHNS(
&self,
ppropvartimecode: *const PROPVARIANT,
pcallback: Ref<'_, IMFAsyncCallback>,
punkstate: Ref<'_, IUnknown>,
) -> Result<()>;
fn EndConvertTimecodeToHNS(
&self,
presult: Ref<'_, IMFAsyncResult>,
) -> Result<i64>;
fn BeginConvertHNSToTimecode(
&self,
hnstime: i64,
pcallback: Ref<'_, IMFAsyncCallback>,
punkstate: Ref<'_, IUnknown>,
) -> Result<()>;
fn EndConvertHNSToTimecode(
&self,
presult: Ref<'_, IMFAsyncResult>,
) -> Result<PROPVARIANT>;
}
Required Methods§
fn BeginConvertTimecodeToHNS( &self, ppropvartimecode: *const PROPVARIANT, pcallback: Ref<'_, IMFAsyncCallback>, punkstate: Ref<'_, IUnknown>, ) -> Result<()>
fn EndConvertTimecodeToHNS( &self, presult: Ref<'_, IMFAsyncResult>, ) -> Result<i64>
fn BeginConvertHNSToTimecode( &self, hnstime: i64, pcallback: Ref<'_, IMFAsyncCallback>, punkstate: Ref<'_, IUnknown>, ) -> Result<()>
fn EndConvertHNSToTimecode( &self, presult: Ref<'_, IMFAsyncResult>, ) -> Result<PROPVARIANT>
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.