2021-03-12 08:30:50 -06:00
|
|
|
error: struct `PubOne` has a public `len` method, but no `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:7:5
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
LL | pub fn len(&self) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::len-without-is-empty` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::len_without_is_empty)]`
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
|
|
error: trait `PubTraitsToo` has a `len` method but no (possibly inherited) `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:57:1
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
|
|
|
LL | / pub trait PubTraitsToo {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2020-08-11 08:43:21 -05:00
|
|
|
LL | | fn len(&self) -> isize;
|
2019-04-16 14:46:07 -05:00
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: struct `HasIsEmpty` has a public `len` method, but a private `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:71:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: `is_empty` defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:76:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | fn is_empty(&self) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-04-16 14:46:07 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: struct `HasWrongIsEmpty` has a public `len` method, but the `is_empty` method has an unexpected signature
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:84:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: `is_empty` defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:89:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | pub fn is_empty(&self, x: u32) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: expected signature: `(&self) -> bool`
|
|
|
|
|
|
|
|
error: struct `MismatchedSelf` has a public `len` method, but the `is_empty` method has an unexpected signature
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:97:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | pub fn len(self) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: `is_empty` defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:102:5
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
|
LL | pub fn is_empty(&self) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: expected signature: `(self) -> bool`
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
|
|
error: trait `DependsOnFoo` has a `len` method but no (possibly inherited) `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:177:1
|
2019-04-16 14:46:07 -05:00
|
|
|
|
|
|
|
|
LL | / pub trait DependsOnFoo: Foo {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-04-16 14:46:07 -05:00
|
|
|
LL | | fn len(&mut self) -> usize;
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
error: struct `OptionalLen3` has a public `len` method, but the `is_empty` method has an unexpected signature
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:223:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> usize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: `is_empty` defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:229:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn is_empty(&self) -> Option<bool> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: expected signature: `(&self) -> bool`
|
|
|
|
|
|
|
|
error: struct `ResultLen` has a public `len` method, but the `is_empty` method has an unexpected signature
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:236:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> Result<usize, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: `is_empty` defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:243:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn is_empty(&self) -> Option<bool> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: expected signature: `(&self) -> bool` or `(&self) -> Result<bool>
|
|
|
|
|
|
|
|
error: this returns a `Result<_, ()>`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:236:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> Result<usize, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use a custom `Error` type instead
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::result-unit-err` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::result_unit_err)]`
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
error: this returns a `Result<_, ()>`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:250:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> Result<usize, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use a custom `Error` type instead
|
|
|
|
|
|
|
|
error: this returns a `Result<_, ()>`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:255:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn is_empty(&self) -> Result<bool, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use a custom `Error` type instead
|
|
|
|
|
|
|
|
error: this returns a `Result<_, ()>`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:263:5
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> Result<usize, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use a custom `Error` type instead
|
|
|
|
|
2023-03-10 03:53:50 -06:00
|
|
|
error: struct `AsyncLenWithoutIsEmpty` has a public `len` method, but no `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:305:5
|
2023-03-10 03:53:50 -06:00
|
|
|
|
|
|
|
|
LL | pub async fn len(&self) -> usize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: struct `AsyncOptionLenWithoutIsEmpty` has a public `len` method, but no `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:318:5
|
2023-03-10 03:53:50 -06:00
|
|
|
|
|
|
|
|
LL | pub async fn len(&self) -> Option<usize> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: struct `AsyncResultLenWithoutIsEmpty` has a public `len` method, but no `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:340:5
|
2023-03-10 03:53:50 -06:00
|
|
|
|
|
|
|
|
LL | pub async fn len(&self) -> Result<usize, ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-09-25 04:28:58 -05:00
|
|
|
error: type `Alias2` has a public `len` method, but no `is_empty` method
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/len_without_is_empty.rs:456:5
|
2023-09-25 04:28:58 -05:00
|
|
|
|
|
|
|
|
LL | pub fn len(&self) -> usize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 16 previous errors
|
2019-04-16 14:46:07 -05:00
|
|
|
|