From 3f041dd9fb5ca2cedd37922a89e5dcb64eff1dae Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 4 Jan 2023 15:44:48 +0100 Subject: [PATCH] Setting to_call. --- examples/grid.rs | 2 +- src/lib.rs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/grid.rs b/examples/grid.rs index 0f776a2..782166d 100644 --- a/examples/grid.rs +++ b/examples/grid.rs @@ -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(); diff --git a/src/lib.rs b/src/lib.rs index c5bebac..b1a8a17 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ pub struct Column { title: String, align: Align, hidden: bool, - pub to_call: Option, + to_call: Option, } 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) { + self.to_call = to_call; + } } pub struct Grid { -- 2.49.0