mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-11 19:55:25 +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::*;
|
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) {
|
fn set_property(&self, _obj: &glib::Object, _id: u32, _value: &glib::Value) {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue