From: Andrea Zagli Date: Sat, 22 Jun 2024 07:15:25 +0000 (+0200) Subject: Added function Column::get_to_call. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=e02e9f0d0509d2522016f85059381810a5b0871b;p=rust%2Fzakgrid Added function Column::get_to_call. --- diff --git a/src/lib.rs b/src/lib.rs index a142596..346677a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,6 +75,10 @@ impl Column { self.to_call = to_call; self.user_data = user_data; } + + pub fn get_to_call(&self) -> (&Option, &Option>) { + (&self.to_call, &self.user_data) + } } pub struct Grid {