extern crate zakgrid;
+use std::any::Any;
+
use config::{Config, ConfigError};
use serde_derive::Deserialize;
settings: Settings,
}
-fn get_not_exists(value: &serde_json::Value) -> String {
+fn get_not_exists(value: &serde_json::Value, user_data: &Option<Box<dyn Any>>) -> String {
String::from("not exists (returned by fn)")
}
grid.add_column(col);
let mut col = zakgrid::Column::new("not_exists");
- col.set_to_call(Some(get_not_exists));
+ col.set_to_call(Some(get_not_exists), None);
grid.add_column(col);
let cols = grid.columns();