1 2 3 4 5 6 7 8 9 10 11 12
use myrmidon_types::Command; use super::Task; impl Task{ pub(crate) fn get_id(&self) -> &String{ &self.id } pub(crate) fn get_commands(&self) -> &Vec<Command>{ &self.commands } }