#[derive(StableEnum)]Expand description
Re-exports the #[derive(StableEnum)] macro for stable-tagged enums.
Derive linera_sdk::formats::StableEnum for an enum. Expands to:
serde::Serialize/serde::Deserializeimpls in which the variant tag is the first 4 bytes ofKeccak-256(variant_name)(read big-endian asu32), with the top 5 bits masked to00001so the ULEB128 encoding is always exactly 4 bytes; and- a
linera_sdk::formats::StableEnumTraceimpl exposing the per-variant tags and atrace_all_variantsmethod that drivesserde_reflection::Tracerwithout caller-supplied samples.