wick-operation 0.2.0

Proc macro for generating operation implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# wick-operation

wick-operation is a crate that provides the `operation` proc macro exposed by the `wick-component` crate.

## Usage

```rust

use wick_component::operation;

#[operation(unary_simple)]
fn my_operation(my_input: String) -> anyhow::Result<String> {
    // ...
}
```