Skip to main content

qubit_error/
lib.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! # Qubit Error
11//!
12//! Provides shared error handling helpers for Rust applications.
13//!
14
15/// Boxed error aliases and conversion helpers.
16pub mod error;
17
18pub use error::{
19    BoxError,
20    BoxResult,
21    DynError,
22    IntoBoxError,
23};