1 2 3 4 5 6 7 8
use crate::prelude::*; pub struct Action { pub name: String, pub owner: MRef, pub input: Vec<(String, Value)>, pub callback: fn(MRef, Vec<Type>), }