@@ -310,7 +310,7 @@ mod tests {
310
310
#[ doc = "Connect the given function pointer to the signal " ]
311
311
#[ doc = "trivialPropertyChanged" ]
312
312
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
313
- pub fn connect_trivial_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
313
+ pub fn connect_trivial_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
314
314
{
315
315
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_trivial_property_changed (
316
316
self ,
@@ -330,7 +330,7 @@ mod tests {
330
330
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
331
331
#[ doc = "\n " ]
332
332
#[ doc = "Note that this method uses a AutoConnection connection type." ]
333
- pub fn on_trivial_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
333
+ pub fn on_trivial_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
334
334
{
335
335
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_trivial_property_changed (
336
336
self ,
@@ -435,7 +435,7 @@ mod tests {
435
435
#[ doc = "Connect the given function pointer to the signal " ]
436
436
#[ doc = "opaquePropertyChanged" ]
437
437
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
438
- pub fn connect_opaque_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
438
+ pub fn connect_opaque_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
439
439
{
440
440
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_opaque_property_changed (
441
441
self ,
@@ -455,7 +455,7 @@ mod tests {
455
455
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
456
456
#[ doc = "\n " ]
457
457
#[ doc = "Note that this method uses a AutoConnection connection type." ]
458
- pub fn on_opaque_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
458
+ pub fn on_opaque_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
459
459
{
460
460
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_opaque_property_changed (
461
461
self ,
@@ -560,7 +560,7 @@ mod tests {
560
560
#[ doc = "Connect the given function pointer to the signal " ]
561
561
#[ doc = "unsafePropertyChanged" ]
562
562
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
563
- pub fn connect_unsafe_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
563
+ pub fn connect_unsafe_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F , conn_type: cxx_qt:: ConnectionType ) -> cxx_qt:: QMetaObjectConnectionGuard
564
564
{
565
565
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_unsafe_property_changed (
566
566
self ,
@@ -580,7 +580,7 @@ mod tests {
580
580
#[ doc = ", so that when the signal is emitted the function pointer is executed." ]
581
581
#[ doc = "\n " ]
582
582
#[ doc = "Note that this method uses a AutoConnection connection type." ]
583
- pub fn on_unsafe_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, mut closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
583
+ pub fn on_unsafe_property_changed<F : FnMut ( core:: pin:: Pin <& mut qobject:: MyObject >, ) + ' static + Send >( self : core:: pin:: Pin <& mut qobject:: MyObject >, closure: F ) -> cxx_qt:: QMetaObjectConnectionGuard
584
584
{
585
585
cxx_qt:: QMetaObjectConnectionGuard :: from( qobject:: MyObject_connect_unsafe_property_changed (
586
586
self ,
0 commit comments