@@ -13,21 +13,21 @@ mod ffi {
13
13
type QByteArray = super :: QByteArray ;
14
14
15
15
/// Clears the contents of the byte array and makes it null.
16
- fn clear ( self : & mut QByteArray ) ;
16
+ fn clear ( self : & mut Self ) ;
17
17
/// Returns true if the byte array has size 0; otherwise returns false.
18
18
#[ rust_name = "is_empty" ]
19
- fn isEmpty ( self : & QByteArray ) -> bool ;
19
+ fn isEmpty ( self : & Self ) -> bool ;
20
20
/// Returns true if this byte array is lowercase, that is, if it's identical to its toLower() folding.
21
21
#[ rust_name = "is_lower" ]
22
- fn isLower ( self : & QByteArray ) -> bool ;
22
+ fn isLower ( self : & Self ) -> bool ;
23
23
/// Returns true if this byte array is null; otherwise returns false.
24
24
#[ rust_name = "is_null" ]
25
- fn isNull ( self : & QByteArray ) -> bool ;
25
+ fn isNull ( self : & Self ) -> bool ;
26
26
/// Returns true if this byte array is uppercase, that is, if it's identical to its toUpper() folding.
27
27
#[ rust_name = "is_upper" ]
28
- fn isUpper ( self : & QByteArray ) -> bool ;
28
+ fn isUpper ( self : & Self ) -> bool ;
29
29
/// Releases any memory not required to store the array's data.
30
- fn squeeze ( self : & mut QByteArray ) ;
30
+ fn squeeze ( self : & mut Self ) ;
31
31
}
32
32
33
33
#[ namespace = "rust::cxxqtlib1" ]
0 commit comments