webdav_xml/elements/mod.rs
1// SPDX-FileCopyrightText: d-k-bo <d-k-bo@mailbox.org>
2//
3// SPDX-License-Identifier: MIT OR Apache-2.0
4
5//! XML element definitions based on
6//! [RFC 4918](http://webdav.org/specs/rfc4918.html#xml.element.definitions).
7
8mod href;
9mod multistatus;
10mod prop;
11mod propfind;
12mod propstat;
13mod response;
14mod responsedescription;
15mod status;
16
17pub use self::{
18 href::Href,
19 multistatus::Multistatus,
20 prop::Properties,
21 propfind::{Include, Propfind},
22 propstat::Propstat,
23 response::Response,
24 responsedescription::ResponseDescription,
25 status::Status,
26};