Fixes and use of rustls.

This commit is contained in:
Mauro D
2022-05-16 17:24:27 +00:00
parent 2549d96703
commit 53abec1222
15 changed files with 211 additions and 27 deletions

View File

@@ -6,7 +6,9 @@ use std::fmt::Display;
use crate::core::set::date_not_set;
use crate::core::set::string_not_set;
use crate::core::Type;
use crate::Get;
use crate::Set;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
@@ -78,3 +80,15 @@ impl Display for Property {
}
}
}
impl Type for VacationResponse<Set> {
fn requires_account_id() -> bool {
true
}
}
impl Type for Property {
fn requires_account_id() -> bool {
true
}
}