code0-flow 0.0.31

Crate for managing the code0-flows inside of the Flow Queue & FlowStore
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod version;

use serde::Deserialize;
use tucana::shared::{DefinitionDataType, FlowType, FunctionDefinition, RuntimeFunctionDefinition};

#[derive(Deserialize, Debug, Clone)]
pub struct Feature {
    pub name: String,
    pub data_types: Vec<DefinitionDataType>,
    pub flow_types: Vec<FlowType>,
    pub runtime_functions: Vec<RuntimeFunctionDefinition>,
    pub functions: Vec<FunctionDefinition>,
}