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