qubit_executor/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 Executor
11//!
12//! Core executor abstractions, task handles, and basic executor implementations.
13//!
14
15pub mod executor;
16pub mod service;
17mod task;
18
19pub use crate::task::{
20 TaskCompletion,
21 TaskCompletionPair,
22 TaskHandle,
23 TaskRunner,
24};
25pub use crate::task::{
26 TaskExecutionError,
27 TaskResult,
28};