aboutsummaryrefslogblamecommitdiff
path: root/src/dav/realization.rs
blob: 18981736bc3503400b93037c1aaff87619943e04 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                        

                                                                                                         











                                                                                                     
                           







                                    
                                                         
                           

                                





                                                
 
use super::types as dav;
use super::caltypes as cal;
use super::xml;
use super::error;

#[derive(Debug, PartialEq)]
pub struct Disabled(());
impl xml::QRead<Disabled> for Disabled {
    async fn qread(xml: &mut xml::Reader<impl xml::IRead>) -> Result<Option<Self>, error::ParsingError> {
        Ok(None)
    }
}
impl xml::QWrite for Disabled {
    async fn qwrite(&self, xml: &mut xml::Writer<impl xml::IWrite>) -> Result<(), quick_xml::Error> {
        unreachable!();
    }
}

/// The base WebDAV 
///
/// Any extension is kooh is disabled through an object we can't build
/// due to a private inner element.
#[derive(Debug, PartialEq)]
pub struct Core {}
impl dav::Extension for Core {
    type Error = Disabled;
    type Property = Disabled;
    type PropertyRequest = Disabled;
    type ResourceType = Disabled;
}

// WebDAV with the base Calendar implementation (RFC4791)
#[derive(Debug, PartialEq)]
pub struct Calendar {}
impl dav::Extension for Calendar
{
    type Error = cal::Violation;
    type Property = cal::Property;
    type PropertyRequest = cal::PropertyRequest;
    type ResourceType = cal::ResourceType;
}