pub trait AllocatorProxyInterface: Send + Sync {
    type RegisterBufferCollectionResponseFut: Future<Output = Result<AllocatorRegisterBufferCollectionResult, Error>> + Send;

    // Required method
    fn register_buffer_collection(
        &self,
        args: RegisterBufferCollectionArgs
    ) -> Self::RegisterBufferCollectionResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§