Added the update_item function

This commit is contained in:
daladim 2021-04-18 00:13:39 +02:00
parent 5b1adca42c
commit 849cbbc07a
5 changed files with 90 additions and 18 deletions

View file

@ -190,6 +190,11 @@ impl From<String> for VersionTag {
}
impl VersionTag {
/// Get the inner version tag (usually a WebDAV `ctag` or `etag`)
pub fn as_str(&self) -> &str {
&self.tag
}
/// Generate a random VesionTag
#[cfg(feature = "local_calendar_mocks_remote_calendars")]
pub fn random() -> Self {