mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 10:30:40 +00:00
ndi: Remove wrong Clone
impl on RecvInstance
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1365>
This commit is contained in:
parent
6c5c09fae9
commit
eb137ec6dc
1 changed files with 2 additions and 1 deletions
|
@ -78,6 +78,7 @@ impl<'a> FindBuilder<'a> {
|
|||
|
||||
#[derive(Debug)]
|
||||
pub struct FindInstance(ptr::NonNull<::std::os::raw::c_void>);
|
||||
|
||||
unsafe impl Send for FindInstance {}
|
||||
|
||||
impl FindInstance {
|
||||
|
@ -252,7 +253,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