// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Converter progress result type alias selected by converter hooks.
use ConvertErrorOf;
use crateTranscodeProgress;
/// Converter progress result type selected by hooks for one target output unit
/// type.
///
/// # Type Parameters
///
/// - `D`: Source codec type.
/// - `E`: Target codec type.
/// - `H`: Converter hook type exposing `Error`.
///
/// # Returns
///
/// Returns a [`Result`] carrying:
/// - `Ok(progress)` when a conversion step advances or completes without error,
/// or
/// - `Err(error)` when conversion cannot continue.
pub type ConvertProgressResult<D, E, H> =
;