Struct reqwest_dav::Client

source ·
pub struct Client {
    pub agent: Client,
    pub host: String,
    pub auth: Auth,
    pub digest_auth: Arc<Mutex<Option<WwwAuthenticateHeader>>>,
}

Fields§

§agent: Client§host: String§auth: Auth§digest_auth: Arc<Mutex<Option<WwwAuthenticateHeader>>>

Implementations§

source§

impl Client

source

pub async fn start_request( &self, method: Method, path: &str ) -> Result<RequestBuilder, Error>

Main function that creates the RequestBuilder, sets the method, url and the basic_auth

source

pub async fn get_raw(&self, path: &str) -> Result<Response, Error>

source

pub async fn get(&self, path: &str) -> Result<Response, Error>

Get a file from Webdav server

Use absolute path to the webdav server file location

source

pub async fn put_raw<B: Into<Body>>( &self, path: &str, body: B ) -> Result<Response, Error>

source

pub async fn put<B: Into<Body>>(&self, path: &str, body: B) -> Result<(), Error>

Upload a file/zip on Webdav server

It can be any type of file as long as it is transformed to a vector of bytes (Vec). This can be achieved with std::fs::File or zip-rs for sending zip files.

Use absolute path to the webdav server folder location

source

pub async fn delete_raw(&self, path: &str) -> Result<Response, Error>

source

pub async fn delete(&self, path: &str) -> Result<(), Error>

Deletes the collection, file, folder or zip archive at the given path on Webdav server

Use absolute path to the webdav server file location

source

pub async fn mkcol_raw(&self, path: &str) -> Result<Response, Error>

source

pub async fn mkcol(&self, path: &str) -> Result<(), Error>

Creates a directory on Webdav server

Use absolute path to the webdav server file location

source

pub async fn unzip_raw(&self, path: &str) -> Result<Response, Error>

source

pub async fn unzip(&self, path: &str) -> Result<(), Error>

Unzips the .zip archieve on Webdav server

Use absolute path to the webdav server file location

source

pub async fn mv_raw(&self, from: &str, to: &str) -> Result<Response, Error>

source

pub async fn mv(&self, from: &str, to: &str) -> Result<(), Error>

Rename or move a collection, file, folder on Webdav server

If the file location changes it will move the file, if only the file name changes it will rename it.

Use absolute path to the webdav server file location

source

pub async fn list_raw( &self, path: &str, depth: Depth ) -> Result<Response, Error>

source

pub async fn list_rsp( &self, path: &str, depth: Depth ) -> Result<Vec<ListResponse>, Error>

source

pub async fn list( &self, path: &str, depth: Depth ) -> Result<Vec<ListEntity>, Error>

List files and folders at the given path on Webdav server

Depth of “0” applies only to the resource, “1” to the resource and it’s children, “infinity” to the resource and all it’s children recursively The result will contain an xml list with the remote folder contents.

Use absolute path to the webdav server folder location

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more