up_rust/bench_fixtures.rs
1//! Cross-crate benchmark and contract-test fixtures (plumbing).
2//!
3//! These types exist to be shared by the transport crates' benches and
4//! payload-contract suites; they are not part of the crate's designed
5//! API surface. Item-level docs and Debug impls are deliberately not
6//! required here.
7#![allow(missing_docs, missing_debug_implementations)]
8/********************************************************************************
9 * Copyright (c) 2026 Contributors to the Eclipse Foundation
10 *
11 * SPDX-License-Identifier: Apache-2.0
12 ********************************************************************************/
13
14//! Shared benchmark fixture contracts.
15
16#[cfg(feature = "payload-contract-fixtures")]
17pub mod payload_contract;