aerogramme/aero-dav/src/caldecoder.rs

34 lines
875 B
Rust
Raw Normal View History

2024-03-08 08:55:33 +00:00
//use super::types as dav;
2024-03-05 17:15:03 +00:00
use super::caltypes::*;
use super::xml;
use super::error;
// ---- ROOT ELEMENTS ---
// ---- EXTENSIONS ---
impl xml::QRead<Violation> for Violation {
2024-03-08 08:55:33 +00:00
async fn qread(_xml: &mut xml::Reader<impl xml::IRead>) -> Result<Self, error::ParsingError> {
2024-03-05 17:15:03 +00:00
unreachable!();
}
}
impl xml::QRead<Property> for Property {
2024-03-08 08:55:33 +00:00
async fn qread(_xml: &mut xml::Reader<impl xml::IRead>) -> Result<Self, error::ParsingError> {
2024-03-05 17:15:03 +00:00
unreachable!();
}
}
impl xml::QRead<PropertyRequest> for PropertyRequest {
2024-03-08 08:55:33 +00:00
async fn qread(_xml: &mut xml::Reader<impl xml::IRead>) -> Result<Self, error::ParsingError> {
2024-03-05 17:15:03 +00:00
unreachable!();
}
}
impl xml::QRead<ResourceType> for ResourceType {
2024-03-08 08:55:33 +00:00
async fn qread(_xml: &mut xml::Reader<impl xml::IRead>) -> Result<Self, error::ParsingError> {
2024-03-05 17:15:03 +00:00
unreachable!();
}
}
// ---- INNER XML ----