Bump max_tables verification x10 #78
Annotations
7 errors
|
Clippy Check
Error: Clippy has exited with exit code 101
|
|
Clippy Check:
rust/src/type/chunk.rs#L97
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/type/chunk.rs:97:31
|
97 | pub fn raw_type_with_name(&self, name: &str) -> Vec<fb::ComputedType> {
| ^^^^^ ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
97 | pub fn raw_type_with_name(&self, name: &str) -> Vec<fb::ComputedType<'_>> {
| ++++
|
|
Clippy Check:
rust/src/type/chunk.rs#L82
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/type/chunk.rs:82:31
|
82 | pub fn raw_type_with_guid(&self, guid: &TypeGUID) -> Option<fb::Type> {
| ^^^^^ the lifetime is elided here ^^^^^^^^ the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
82 | pub fn raw_type_with_guid(&self, guid: &TypeGUID) -> Option<fb::Type<'_>> {
| ++++
|
|
Clippy Check:
rust/src/type/chunk.rs#L62
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/type/chunk.rs:62:19
|
62 | pub fn object(&self) -> fb::TypeChunk {
| ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
62 | pub fn object(&self) -> fb::TypeChunk<'_> {
| ++++
|
|
Clippy Check:
rust/src/type/chunk.rs#L55
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/type/chunk.rs:55:21
|
55 | fn get_raw_type(&self, idx: usize) -> Option<fb::ComputedType> {
| ^^^^^ ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
55 | fn get_raw_type(&self, idx: usize) -> Option<fb::ComputedType<'_>> {
| ++++
|
|
Clippy Check:
rust/src/signature/chunk.rs#L60
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/signature/chunk.rs:60:19
|
60 | pub fn object(&self) -> fb::SignatureChunk {
| ^^^^^ ^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
60 | pub fn object(&self) -> fb::SignatureChunk<'_> {
| ++++
|
|
Clippy Check:
rust/src/signature/chunk.rs#L53
error: hiding a lifetime that's elided elsewhere is confusing
--> rust/src/signature/chunk.rs:53:25
|
53 | fn get_raw_function(&self, idx: usize) -> Option<fb::Function> {
| ^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `-D mismatched-lifetime-syntaxes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(mismatched_lifetime_syntaxes)]`
help: use `'_` for type paths
|
53 | fn get_raw_function(&self, idx: usize) -> Option<fb::Function<'_>> {
| ++++
|
Loading