DavExpandPropertyProvider

Trait DavExpandPropertyProvider 

Source
pub trait DavExpandPropertyProvider: Send + Sync {
    // Required method
    fn property<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        href: &'life1 str,
        property: &'life2 DavRequestedProperty,
    ) -> Pin<Box<dyn Future<Output = Result<Option<DavExpandPropertyValue>, DavBackendError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}
Expand description

Product port for resolving one property without exposing persistence entities to Forge.

Required Methods§

Source

fn property<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, href: &'life1 str, property: &'life2 DavRequestedProperty, ) -> Pin<Box<dyn Future<Output = Result<Option<DavExpandPropertyValue>, DavBackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§