DavVersionControlPort

Trait DavVersionControlPort 

Source
pub trait DavVersionControlPort: Send + Sync {
    // Required method
    fn version_control<'life0, 'async_trait>(
        &'life0 self,
        plan: DavVersionControlPlan,
    ) -> Pin<Box<dyn Future<Output = Result<DavVersionControlResult, DavBackendError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Product-owned atomic VERSION-CONTROL transaction boundary.

Required Methods§

Source

fn version_control<'life0, 'async_trait>( &'life0 self, plan: DavVersionControlPlan, ) -> Pin<Box<dyn Future<Output = Result<DavVersionControlResult, DavBackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§