statum 0.8.5

Represent workflow and protocol state correctly in Rust by making invalid states unrepresentable
Documentation
1
2
3
4
5
6
7
#[transition]
impl GeneratedFlow<MacroTarget> {
    #[present(label = "Via Include", metadata = "include")]
    fn via_include(self) -> GeneratedFlow<Included> {
        self.transition()
    }
}