aboutsummaryrefslogblamecommitdiff
path: root/src/dav/caldecoder.rs
blob: 75af4b797d003bfb035a50d8492fc39afb79f9f9 (plain) (tree)
































                                                                                                                
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 ----