Skip to main content

DavIfStateResolver

Trait DavIfStateResolver 

Source
pub trait DavIfStateResolver: Send + Sync {
    // Required method
    fn resolve_if_state<'life0, 'life1, 'async_trait>(
        &'life0 self,
        path: &'life1 DavPath,
    ) -> Pin<Box<dyn Future<Output = Result<DavIfResourceState, DavBackendError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Product adapter used while evaluating WebDAV If conditions.

Required Methods§

Source

fn resolve_if_state<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 DavPath, ) -> Pin<Box<dyn Future<Output = Result<DavIfResourceState, DavBackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§