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§
type RegisterBufferCollectionResponseFut: Future<Output = Result<AllocatorRegisterBufferCollectionResult, Error>> + Send
Required Methods§
fn register_buffer_collection( &self, args: RegisterBufferCollectionArgs, ) -> Self::RegisterBufferCollectionResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".