Skip to main content

codama_nodes/generated/
instruction_byte_delta_node.rs

1use crate::InstructionByteDeltaValue;
2use codama_nodes_derive::node;
3
4#[node]
5pub struct InstructionByteDeltaNode {
6    // Data.
7    pub with_header: bool,
8    #[serde(skip_serializing_if = "crate::is_default")]
9    pub subtract: Option<bool>,
10
11    // Children.
12    pub value: Box<InstructionByteDeltaValue>,
13}