From: Andrea Zagli Date: Wed, 4 Jan 2023 14:44:48 +0000 (+0100) Subject: Setting to_call. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=3f041dd9fb5ca2cedd37922a89e5dcb64eff1dae;p=rust%2Fzakgrid Setting to_call. --- 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 {