qubit-cas 0.2.0

Typed compare-and-swap executor with retry-aware conflict handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026.
 *    Haixing Hu, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! CAS error types.

mod cas_attempt_failure;
mod cas_attempt_failure_kind;
mod cas_error;

pub use cas_attempt_failure::CasAttemptFailure;
pub use cas_attempt_failure_kind::CasAttemptFailureKind;
pub use cas_error::{CasError, CasErrorKind};