ndi: Remove wrong Clone impl on RecvInstance

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1411>
This commit is contained in:
Sebastian Dröge 2023-10-18 18:38:15 +03:00
parent b81b2cee81
commit 11ea962f81

View file

@ -76,6 +76,7 @@ impl<'a> FindBuilder<'a> {
#[derive(Debug)]
pub struct FindInstance(ptr::NonNull<::std::os::raw::c_void>);
unsafe impl Send for FindInstance {}
impl FindInstance {
@ -250,7 +251,7 @@ impl<'a> RecvBuilder<'a> {
}
}
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct RecvInstance(ptr::NonNull<::std::os::raw::c_void>);
unsafe impl Send for RecvInstance {}