logo
pub trait Component {
    type Inputs;
    type Outputs;
    type Config;
}
Expand description

The base trait for WasmFlow Components.

Required Associated Types

The type of the inputs. Often generated.

The type of the outputs. Often generated.

The configuration for the component. Often generated.

Implementors