codama-nodes 0.10.0

Node specifications and helpers for the Codama standard
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::InstructionLifecycle;
use codama_nodes_derive::node;

#[node]
pub struct InstructionStatusNode {
    // Data.
    pub lifecycle: InstructionLifecycle,
    #[serde(skip_serializing_if = "crate::is_default")]
    pub message: Option<String>,
}