A few getters
parent
99088d29ca
commit
9e625cb94d
|
|
@ -66,6 +66,15 @@ impl Calendar {
|
|||
&self.name
|
||||
}
|
||||
|
||||
pub fn url(&self) -> &Url {
|
||||
&self.url
|
||||
}
|
||||
|
||||
/// Returns whether this calDAV calendar supports to-do items
|
||||
pub fn supports_todo(&self) -> bool {
|
||||
self.supported_components.contains(SupportedComponents::Todo)
|
||||
}
|
||||
|
||||
pub fn tasks(&self) -> Vec<&Task> {
|
||||
self.tasks
|
||||
.iter()
|
||||
|
|
|
|||
Loading…
Reference in New Issue