// SPDX-License-Identifier: Apache-2.0
//! Sync provenance: producer identity and monotonic sequence for idempotency.
use ;
/// Producer identity and sequence used by the WAL / Data Plane for
/// idempotency checks.
///
/// On the wire, ingest messages carry the three flat fields
/// (`producer_id`, `epoch`, `seq`) directly for zero nesting overhead.
/// This struct is the in-process representation used after deserialization.