More API changes

This commit is contained in:
daladim 2021-02-19 07:58:53 +01:00
parent 0cf441475d
commit f8c8f09203
3 changed files with 10 additions and 3 deletions

View file

@ -1,18 +0,0 @@
use uuid::Uuid;
/// A to-do task
pub struct Task {
id: Uuid,
name: String,
}
impl Task {
pub fn id(&self) -> Uuid { self.id }
pub fn name(&self) -> String { self.name }
pub fn completed(&self) -> bool { self.completed }
pub fn set_completed(&mut self) {
// TODO: either require a reference to the DataSource, so that it is aware
// or change a flag here, and the DataSource will be able to check the flags of all its content (but then the Calendar should only give a reference/Arc, not a clone)
}
}