Re: [pve-devel] [PATCH proxmox-backup 1/2] change * imports of proxmox_backup::client

2020-07-17 Thread Mira Limbeck
Sent it to the wrong mailing list by accident, please disregard. On 7/17/20 5:43 PM, Mira Limbeck wrote: Change the src/client.rs to make the modules public instead of publically using each member. This simplified the code and keeps the behaviour almost the same. Instead of using 'use proxmox_b

[pve-devel] [PATCH proxmox-backup 1/2] change * imports of proxmox_backup::client

2020-07-17 Thread Mira Limbeck
Change the src/client.rs to make the modules public instead of publically using each member. This simplified the code and keeps the behaviour almost the same. Instead of using 'use proxmox_backup::client::*' we now have to use the full path (e.g. 'use proxmox_backup::client::http_client::') instead