Expand description
HTTP methods for WebDAV as defined in RFC 4918.
Unfortunately, the http crate
doesn’t support creating custom Methods constants yet,
so they are currently defined as static variables using
once_cell::sync::Lazy.
Statics§
- COPY
- The
COPYmethod as defined in RFC 4918. - LOCK
- The
LOCKmethod as defined in RFC 4918. - MKCOL
- The
MKCOLmethod as defined in RFC 4918. - MOVE
- The
MOVEmethod as defined in RFC 4918. - PROPFIND
- The
PROPFINDmethod as defined in RFC 4918. - PROPPATCH
- The
PROPPATCHmethod as defined in RFC 4918. - UNLOCK
- The
UNLOCKmethod as defined in RFC 4918.