[][src]Module rustydav::client

Webdav client

Create a client

This example is not tested
let client = Client::init("username", "password");

Now you can use the client to call any of the methods listed bellow.

All the paths used by the methods should be absolute on the webdav server to the required file, folder, zip.

Every method will return a Result<Response, Error>

if result.is_ok() {
   // the method completed with success
} else {
   // somenting when wrong
}

Structs

Client