codama-nodes 0.9.3

Node specifications and helpers for the Codama standard
Documentation
1
2
3
4
5
6
7
8
9
use crate::{FixedCountNode, PrefixedCountNode, RemainderCountNode};
use codama_nodes_derive::node_union;

#[node_union]
pub enum CountNode {
    Fixed(FixedCountNode),
    Prefixed(PrefixedCountNode),
    Remainder(RemainderCountNode),
}