]> saetta.ns0.it Git - rust/zakgrid/commitdiff
Setting to_call.
authorAndrea Zagli <azagli@libero.it>
Wed, 4 Jan 2023 14:44:48 +0000 (15:44 +0100)
committerAndrea Zagli <azagli@libero.it>
Wed, 4 Jan 2023 14:44:48 +0000 (15:44 +0100)
examples/grid.rs
src/lib.rs

index 0f776a2594223695cf96b55d0f93544f5244554a..782166d127a2346245c5ec7d3fa7ecda00afb357 100644 (file)
@@ -83,7 +83,7 @@ async fn index(
        grid.add_column(col);
 
        let mut col = zakgrid::Column::new("not_exists");
-       col.to_call = Some(get_not_exists);
+       col.set_to_call(Some(get_not_exists));
        grid.add_column(col);
 
        let cols = grid.columns();
index c5bebac3c3a0e158d22383c217ef62611e8d6677..b1a8a17d626cbbf6b28d5e956446806f4295d17c 100644 (file)
@@ -16,7 +16,7 @@ pub struct Column {
        title: String,
        align: Align,
        hidden: bool,
-       pub to_call: Option<ToCall>,
+       to_call: Option<ToCall>,
 }
 
 impl Column {
@@ -57,6 +57,10 @@ impl Column {
        pub fn hidden(&self) -> bool {
                self.hidden
        }
+
+       pub fn set_to_call(&mut self, to_call: Option<ToCall>) {
+               self.to_call = to_call;
+       }
 }
 
 pub struct Grid {