1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! `model` module defines a number of core data structures that are used across the compiler
//! and the runtime and macros.
/// Definition of `RuntimeFunction` structure
/// Traits used for the validation of Model structs
/// `io` is the object used to define a process's inputs or outputs
/// `datatype` specifies the type of data permitted on a input, output or connection
/// A custom deserializer for a String or a Sequence of Strings for DataTypes
/// `connection` defines the connection between one process output to another process's input
/// `flow` is the definition of an entire flow, including children flows
/// `function` defines a function in a flow or library
/// `name` is used to name various objects in the flow model
/// `process` is a generic definition of a `function` or a `flow` so a flow referring to it or using
/// it does not need to know or define how it is implemented
/// `process_reference` is an object used within a flow to reference a process defined elsewhere
/// `route` defines a location in the hierarchy of a flow and can locate a flow, a function, or one of
/// its inputs or outputs
/// A custom deserializer for a String or a Sequence of Strings for Routes
/// `input` defines the struct for inputs to functions in a flow
/// `output_connection` defines a struct for a function's output connection
/// `metadata` defined structs for flow meta data
/// `submission`defines a struct for submitting flows for execution
/// `metrics` defines a struct for runtime execution metrics
/// `flow_manifest` is the struct that specifies the manifest of functions in a flow
/// `lib_manifest` defines the structs for specifying a Library's manifest and methods to load it