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§
Sourceunsafe fn InProgress(&self, isInProgress: *mut VARIANT_BOOL) -> HRESULT
unsafe fn InProgress(&self, isInProgress: *mut VARIANT_BOOL) -> HRESULT
True if the operation is still in progress.
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.