aboutsummaryrefslogtreecommitdiff
path: root/aero-proto/src/dav/node.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-04-23 15:43:48 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-04-23 15:43:48 +0200
commitadbccd88348f472751373a2e1d536e818be8fa67 (patch)
tree6e87f26cce79339854414e2de328e1dd20d1d2a9 /aero-proto/src/dav/node.rs
parent50ce8621c2eaf91c46be0a2a9c2b82b19e66880b (diff)
downloadaerogramme-adbccd88348f472751373a2e1d536e818be8fa67.tar.gz
aerogramme-adbccd88348f472751373a2e1d536e818be8fa67.zip
Add support for content type
Diffstat (limited to 'aero-proto/src/dav/node.rs')
-rw-r--r--aero-proto/src/dav/node.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/aero-proto/src/dav/node.rs b/aero-proto/src/dav/node.rs
index e2835e9..0b63900 100644
--- a/aero-proto/src/dav/node.rs
+++ b/aero-proto/src/dav/node.rs
@@ -34,6 +34,8 @@ pub(crate) trait DavNode: Send {
fn properties(&self, user: &ArcUser, prop: dav::PropName<All>) -> Vec<dav::AnyProperty<All>>;
/// Put an element (create or update)
fn put<'a>(&'a self, policy: PutPolicy, stream: Content<'a>) -> BoxFuture<'a, Result<Etag>>;
+ /// Content type of the element
+ fn content_type(&self) -> &str;
/// Get content
fn content<'a>(&'a self) -> BoxFuture<'a, Content<'static>>;