diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-05 18:15:03 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-05 18:15:03 +0100 |
commit | 1aafd752ca00ddda5340aacfb0ed291b803845da (patch) | |
tree | 24021a5199cd927a0173356048c5f651efbb58ac /src/dav/caldecoder.rs | |
parent | 8fec92a0868b2a2fd31edbf12d6896a974913111 (diff) | |
download | aerogramme-1aafd752ca00ddda5340aacfb0ed291b803845da.tar.gz aerogramme-1aafd752ca00ddda5340aacfb0ed291b803845da.zip |
Re-enable cal encoder tests
Diffstat (limited to 'src/dav/caldecoder.rs')
-rw-r--r-- | src/dav/caldecoder.rs | 33 |
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 ---- |