DavRandomWriteSystem

Trait DavRandomWriteSystem 

Source
pub trait DavRandomWriteSystem: Send + Sync {
    type Handle: DavRandomWriteHandle;

    // Required method
    fn open_random_write<'a>(
        &'a self,
        path: &'a DavPath,
        options: DavWriteOptions,
    ) -> impl Future<Output = Result<Self::Handle, DavBackendError>> + Send + 'a;
}
Expand description

Optional product adapter for random writes. Ordinary writers do not implement this port.

Required Associated Types§

Required Methods§

Source

fn open_random_write<'a>( &'a self, path: &'a DavPath, options: DavWriteOptions, ) -> impl Future<Output = Result<Self::Handle, DavBackendError>> + Send + 'a

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§