We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following will trigger the len_without_is_empty error:
len_without_is_empty
impl Foo { pub async fn len(&self) -> usize { ... } pub async fn is_empty(&self) -> bool { ... } }
It probably shouldn't expect the exact signature fn(&self) -> bool.
fn(&self) -> bool