Adjustment.
authorAndrea Zagli <azagli@libero.it>
Sat, 1 Jun 2024 05:36:48 +0000 (07:36 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 1 Jun 2024 05:36:48 +0000 (07:36 +0200)
examples/grid.rs
src/lib.rs

index 782166d127a2346245c5ec7d3fa7ecda00afb357..2d11cbfcfc24c90196375086b850ec6a0b4a303e 100644 (file)
@@ -1,5 +1,7 @@
 extern crate zakgrid;
 
+use std::any::Any;
+
 use config::{Config, ConfigError};
 use serde_derive::Deserialize;
 
@@ -43,7 +45,7 @@ struct AppState {
        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)")
 }
 
@@ -83,7 +85,7 @@ async fn index(
        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();
index 6019b297be5e52a26785efaf4b65d42781fbe6bb..df3c19167f6c02adecd2a26ec03cb6b3edcd66f0 100644 (file)
@@ -1,6 +1,5 @@
 use std::any::Any;
 
-use serde_json::Value;
 use serde_derive::Serialize;
 use tera::Tera;