Arrow

Derive Macro Arrow 

Source
#[derive(Arrow)]
Expand description

Derive macro for declaring an Arrow convertable type within the Arcon runtime

use arcon::prelude::*;

#[derive(Arrow)]
pub struct ArrowStruct {
    pub id: u32,
    pub name: String,
}