mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-03 13:58:42 +00:00
Don't implement Clone/Copy for PadProbeId
It's only possible to use it at most once.
This commit is contained in:
parent
24b8b383d8
commit
8caf88810c
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ use libc;
|
||||||
|
|
||||||
use ffi;
|
use ffi;
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq)]
|
#[derive(Debug, Default, PartialEq, Eq)]
|
||||||
pub struct PadProbeId(libc::c_ulong);
|
pub struct PadProbeId(libc::c_ulong);
|
||||||
pub const PAD_PROBE_ID_INVALID: PadProbeId = PadProbeId(0);
|
pub const PAD_PROBE_ID_INVALID: PadProbeId = PadProbeId(0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue