@@ -46,32 +46,32 @@ pub mod qobject {
46
46
47
47
/// Reset all the containers
48
48
#[ qinvokable]
49
- fn reset ( self : Pin < & mut RustContainers > ) ;
49
+ fn reset ( self : Pin < & mut Self > ) ;
50
50
51
51
/// Append the given number to the vector container
52
52
#[ qinvokable]
53
53
#[ cxx_name = "appendVector" ]
54
- fn append_vector ( self : Pin < & mut RustContainers > , value : i32 ) ;
54
+ fn append_vector ( self : Pin < & mut Self > , value : i32 ) ;
55
55
56
56
/// Append the given number to the list container
57
57
#[ qinvokable]
58
58
#[ cxx_name = "appendList" ]
59
- fn append_list ( self : Pin < & mut RustContainers > , value : i32 ) ;
59
+ fn append_list ( self : Pin < & mut Self > , value : i32 ) ;
60
60
61
61
/// Insert the given number into the set container
62
62
#[ qinvokable]
63
63
#[ cxx_name = "insertSet" ]
64
- fn insert_set ( self : Pin < & mut RustContainers > , value : i32 ) ;
64
+ fn insert_set ( self : Pin < & mut Self > , value : i32 ) ;
65
65
66
66
/// Insert the given string and variant to the hash container
67
67
#[ qinvokable]
68
68
#[ cxx_name = "insertHash" ]
69
- fn insert_hash ( self : Pin < & mut RustContainers > , key : QString , value : QVariant ) ;
69
+ fn insert_hash ( self : Pin < & mut Self > , key : QString , value : QVariant ) ;
70
70
71
71
/// Insert the given string and variant to the map container
72
72
#[ qinvokable]
73
73
#[ cxx_name = "insertMap" ]
74
- fn insert_map ( self : Pin < & mut RustContainers > , key : QString , value : QVariant ) ;
74
+ fn insert_map ( self : Pin < & mut Self > , key : QString , value : QVariant ) ;
75
75
}
76
76
}
77
77
0 commit comments