allocator: Implement Copy on AllocationParams

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1667>
This commit is contained in:
Sebastian Dröge 2025-03-23 11:03:24 +02:00
parent d6770a8a00
commit 7a36bd2790

View file

@ -6,7 +6,7 @@ use glib::translate::*;
use crate::{ffi, MemoryFlags};
#[derive(Debug, Clone)]
#[derive(Debug, Clone, Copy)]
#[doc(alias = "GstAllocationParams")]
#[repr(transparent)]
pub struct AllocationParams(ffi::GstAllocationParams);