diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-05 19:06:04 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-05 19:06:04 +0100 |
commit | 2dd6deae545690cdcc00ca1123d1818598497fed (patch) | |
tree | 715e4ee5f8f283581a78c57e3581b79f56a983f1 /src/dav/caldecoder.rs | |
parent | 1aafd752ca00ddda5340aacfb0ed291b803845da (diff) | |
download | aerogramme-2dd6deae545690cdcc00ca1123d1818598497fed.tar.gz aerogramme-2dd6deae545690cdcc00ca1123d1818598497fed.zip |
Re-enable + enhance DAV decode tests
Diffstat (limited to 'src/dav/caldecoder.rs')
-rw-r--r-- | src/dav/caldecoder.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dav/caldecoder.rs b/src/dav/caldecoder.rs index 75af4b7..b45d649 100644 --- a/src/dav/caldecoder.rs +++ b/src/dav/caldecoder.rs @@ -7,25 +7,25 @@ use super::error; // ---- EXTENSIONS --- impl xml::QRead<Violation> for Violation { - async fn qread(&self, xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> { + async fn qread(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> { + async fn qread(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> { + async fn qread(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> { + async fn qread(xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> { unreachable!(); } } |