IITOperationStatus_Impl

Trait IITOperationStatus_Impl 

Source
pub trait IITOperationStatus_Impl: Sized + IDispatch_Impl {
    // Required methods
    unsafe fn InProgress(&self, isInProgress: *mut VARIANT_BOOL) -> HRESULT;
    unsafe fn Tracks(
        &self,
        iTrackCollection: *mut Option<IITTrackCollection>,
    ) -> HRESULT;
}

Required Methods§

Source

unsafe fn InProgress(&self, isInProgress: *mut VARIANT_BOOL) -> HRESULT

True if the operation is still in progress.

Source

unsafe fn Tracks( &self, iTrackCollection: *mut Option<IITTrackCollection>, ) -> HRESULT

Returns a collection containing the tracks that were generated by the operation.

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.

Implementors§