aboutsummaryrefslogtreecommitdiff
path: root/src/dav/caldecoder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/dav/caldecoder.rs')
-rw-r--r--src/dav/caldecoder.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/dav/caldecoder.rs b/src/dav/caldecoder.rs
new file mode 100644
index 0000000..75af4b7
--- /dev/null
+++ b/src/dav/caldecoder.rs
@@ -0,0 +1,33 @@
+use super::types as dav;
+use super::caltypes::*;
+use super::xml;
+use super::error;
+
+// ---- ROOT ELEMENTS ---
+
+// ---- EXTENSIONS ---
+impl xml::QRead<Violation> for Violation {
+ async fn qread(&self, xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> {
+ unreachable!();
+ }
+}
+
+impl xml::QRead<Property> for Property {
+ async fn qread(&self, xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> {
+ unreachable!();
+ }
+}
+
+impl xml::QRead<PropertyRequest> for PropertyRequest {
+ async fn qread(&self, xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> {
+ unreachable!();
+ }
+}
+
+impl xml::QRead<ResourceType> for ResourceType {
+ async fn qread(&self, xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> {
+ unreachable!();
+ }
+}
+
+// ---- INNER XML ----