mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-24 11:00:29 +00:00
remove Send+Sync requirement from object. Does not bode well with gtk
This commit is contained in:
parent
a401427a0c
commit
d74995ee7e
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ use glib::translate::*;
|
|||
|
||||
use properties::*;
|
||||
|
||||
pub trait ObjectImpl<T: ObjectType>: Send + Sync + 'static {
|
||||
pub trait ObjectImpl<T: ObjectType>: 'static {
|
||||
fn set_property(&self, _obj: &glib::Object, _id: u32, _value: &glib::Value) {
|
||||
unimplemented!()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue