mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 14:52:04 +00:00
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:
parent
b81b2cee81
commit
11ea962f81
1 changed files with 2 additions and 1 deletions
|
@ -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 {}
|
||||
|
|
Loading…
Reference in a new issue