pub trait IKsAllocator_Impl: Sized {
    // Required methods
    fn KsGetAllocatorHandle(&self) -> HANDLE;
    fn KsGetAllocatorMode(&self) -> KSALLOCATORMODE;
    fn KsGetAllocatorStatus(
        &self,
        allocatorstatus: *mut KSSTREAMALLOCATOR_STATUS
    ) -> Result<()>;
    fn KsSetAllocatorMode(&self, mode: KSALLOCATORMODE);
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§