gstreamer-allocators 0.25.0

Rust bindings for GStreamer Allocators library
Documentation
1
2
3
4
5
6
7
8
9
use glib::{prelude::*, subclass::prelude::*};

use crate::{DmaBufAllocator, subclass::fd_allocator::FdAllocatorImpl};

pub trait DmaBufAllocatorImpl:
    FdAllocatorImpl + ObjectSubclass<Type: IsA<DmaBufAllocator>>
{
}
unsafe impl<T: DmaBufAllocatorImpl> IsSubclassable<T> for DmaBufAllocator {}