Skip to main content

contacts_core/
lib.rs

1mod href;
2mod property;
3mod property_find;
4mod property_status;
5mod resource_type;
6mod status;
7mod xml;
8
9pub use href::{
10    Href,
11};
12pub use property::{
13    PropertyName,
14    PropertyValue,
15    PropertyResponse,
16};
17pub use property_find::{
18    PropertyFindRequest,
19};
20pub use property_status::{
21    PropertyMulti,
22    PropertyResource,
23    PropertyStatus,
24};
25pub use resource_type::{
26    ResourceType,
27};
28pub use status::{
29    Status,
30};
31pub use xml::XmlError;
32
33use xml::{
34    XmlReader,
35    XmlWriter,
36};
37
38mod ns {
39    pub const CARDDAV: &'static str = "urn:ietf:params:xml:ns:carddav";
40    pub const DAV: &'static str = "DAV:";
41}
42