// SPDX-License-Identifier: MIT OR Apache-2.0
usestd::hash::Hash as StdHash;/// Identifier of a single operation.
pubtraitOperationId: Copy + Clone + PartialEq + Eq + StdHash {}/// Returns (unique) hash digest, which can be used as identifier of this published data type.
pubtraitDigest<ID>
where
ID: OperationId,
{fnhash(&self)-> ID;}