// SPDX-License-Identifier: BUSL-1.1
//! Parameters for [`super::engine::KvEngine::batch_put`].
use Surrogate;
/// Parameters for [`super::engine::KvEngine::batch_put`].
///
/// Bundles all per-batch inputs so the method stays argument-count clean.
///
/// `surrogates` carries each entry's stable cross-engine identity, same
/// order and length as `entries` -- assigned by the CP-side
/// `SurrogateAssigner` from `(collection, key)`, same mechanism as a
/// single-key `put`. Pass `Surrogate::ZERO` per-entry only from internal
/// RMW callers that do not allocate one (existing entries preserve their
/// bound surrogate either way, per `put`'s semantics).