fluvio-smartstream 0.4.0

Fluvio SmartModule WASM library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fluvio_smartmodule::{smartmodule, SmartOpt, Record, RecordData, Result};

#[derive(Default, SmartOpt)]
pub struct MapOpt;

#[smartmodule(map, params)]
pub fn map(_record: &Record, _opt: &MapOpt) -> Result<(Option<RecordData>, RecordData)> {
    unimplemented!()
}

fn main() {}