File tree Expand file tree Collapse file tree 7 files changed +9
-3
lines changed Expand file tree Collapse file tree 7 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ pub use khronos_egl;
18
18
mod rt;
19
19
20
20
#[ allow( clippy:: upper_case_acronyms) ]
21
+ #[ allow( unused_imports) ]
21
22
mod auto;
22
23
23
24
pub mod builders;
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ impl Clipboard {
64
64
}
65
65
}
66
66
67
+ #[ allow( clippy:: type_complexity) ]
67
68
pub fn read_future (
68
69
& self ,
69
70
mime_types : & [ & str ] ,
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ impl Drop {
67
67
}
68
68
}
69
69
70
+ #[ allow( clippy:: type_complexity) ]
70
71
pub fn read_future (
71
72
& self ,
72
73
mime_types : & [ & str ] ,
Original file line number Diff line number Diff line change 1
1
// Take a look at the license at the top of the repository in the LICENSE file.
2
2
3
3
#![ cfg_attr( feature = "dox" , feature( doc_cfg) ) ]
4
- #![ allow( clippy:: type_complexity) ]
5
4
#![ doc = include_str ! ( "../README.md" ) ]
6
5
7
6
pub use cairo;
@@ -49,6 +48,7 @@ macro_rules! skip_assert_initialized {
49
48
}
50
49
51
50
#[ allow( clippy:: derive_hash_xor_eq) ]
51
+ #[ allow( clippy:: type_complexity) ]
52
52
mod auto;
53
53
54
54
#[ macro_use]
Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ impl<T: ContentProviderImpl> ContentProviderImplExt for T {
156
156
}
157
157
}
158
158
159
+ #[ allow( clippy:: type_complexity) ]
159
160
fn parent_write_mime_type_async <
160
161
Q : IsA < gio:: Cancellable > ,
161
162
R : FnOnce ( Result < ( ) , glib:: Error > ) + ' static ,
Original file line number Diff line number Diff line change 1
1
// Take a look at the license at the top of the repository in the LICENSE file.
2
2
3
3
#![ cfg_attr( feature = "dox" , feature( doc_cfg) ) ]
4
- #![ allow( clippy:: too_many_arguments) ]
5
4
#![ allow( deprecated) ]
6
5
#![ doc = include_str ! ( "../README.md" ) ]
7
6
@@ -89,8 +88,9 @@ static TEST_THREAD_WORKER: once_cell::sync::Lazy<glib::ThreadPool> =
89
88
pool
90
89
} ) ;
91
90
92
- #[ allow( clippy:: type_complexity) ]
93
91
#[ allow( clippy:: derive_hash_xor_eq) ]
92
+ #[ allow( clippy:: too_many_arguments) ]
93
+ #[ allow( clippy:: type_complexity) ]
94
94
mod auto;
95
95
96
96
#[ macro_use]
Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ pub trait CellAreaImpl: CellAreaImplExt + ObjectImpl {
196
196
self . parent_preferred_height_for_width ( context, widget, width)
197
197
}
198
198
199
+ #[ allow( clippy:: too_many_arguments) ]
199
200
fn snapshot < P : IsA < CellAreaContext > , W : IsA < Widget > > (
200
201
& self ,
201
202
context : & P ,
@@ -297,6 +298,7 @@ pub trait CellAreaImplExt: ObjectSubclass {
297
298
width : i32 ,
298
299
) -> ( i32 , i32 ) ;
299
300
301
+ #[ allow( clippy:: too_many_arguments) ]
300
302
fn parent_snapshot < P : IsA < CellAreaContext > , W : IsA < Widget > > (
301
303
& self ,
302
304
context : & P ,
You can’t perform that action at this time.
0 commit comments