719 |
/// * See description.
|
720 |
#[allow(clippy::manual_unwrap_or)]
|
513 |
// Uncomment if ever needed
|
514 |
#[allow(clippy::manual_unwrap_or)] // stupid clippy not realizing we're in a const fn
|
515 |
const fn new_hole(val: Option<usize>) -> Self {
|
263 |
#[allow(clippy::manual_unwrap_or)]
|
264 |
fn name(option: &Option<String>) -> &str {
|
58 |
const fn code_to_bit(code: tonic::Code) -> BitSet {
|
59 |
#[allow(clippy::manual_unwrap_or)] // must be manual because unwrap_or is not const
|
60 |
match u32::checked_shl(1, code as u32) {
|
1 |
#![allow(clippy::manual_unwrap_or)]
|
2 |
use std::collections::Bound;
|
1 |
#![allow(clippy::from_over_into)]
|
2 |
#![allow(clippy::manual_unwrap_or)]
|
3 |
#![allow(clippy::manual_map)]
|
1 |
#![allow(clippy::from_over_into)]
|
2 |
#![allow(clippy::manual_unwrap_or)]
|
3 |
#![allow(clippy::manual_map)]
|
57 |
clippy::borrowed_box,
|
58 |
clippy::manual_unwrap_or,
|
59 |
clippy::collapsible_else_if,
|