44 |
#[must_use]
|
45 |
#[allow(clippy::let_unit_value, clippy::no_effect_underscore_binding)]
|
46 |
pub const fn from(value: TRange::ValueType) -> Self
|
60 |
/// Returns `Some(Self)` when `value` is within bounds or `None` otherwise.
|
61 |
#[allow(clippy::let_unit_value, clippy::no_effect_underscore_binding)]
|
62 |
pub const fn try_from(value: TRange::ValueType) -> Result<Self>
|
274 |
let action_event = processor._end_event_to_action_event(4.99, 0.0, 3);
|
275 |
#[allow(clippy::no_effect_underscore_binding)]
|
276 |
let _expected_err = ProcessorError::DisplacementBelowThreshold(5.0);
|
624 |
#[allow(unknown_lints)]
|
625 |
#[allow(clippy::no_effect_underscore_binding)]
|
626 |
pub fn decipher(&self) -> (Vec<String>, Vec<Vec<ColorId>>) {
|
358 |
clippy::used_underscore_binding,
|
359 |
clippy::no_effect_underscore_binding
|
360 |
)]
|
158 |
clippy::used_underscore_binding,
|
159 |
clippy::no_effect_underscore_binding
|
160 |
)]
|
181 |
clippy::used_underscore_binding,
|
182 |
clippy::no_effect_underscore_binding
|
183 |
)]
|
108 |
clippy::used_underscore_binding,
|
109 |
clippy::no_effect_underscore_binding
|
110 |
)]
|
122 |
clippy::used_underscore_binding,
|
123 |
clippy::no_effect_underscore_binding
|
124 |
)]
|
8 |
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::perf)]
|
9 |
#![allow(clippy::module_name_repetitions, clippy::no_effect_underscore_binding)]
|
10 |
use serde::de::DeserializeOwned;
|
13 |
//TODO: remove once this works with async_trait again
|
14 |
#![allow(clippy::no_effect_underscore_binding)]
|
24 |
)]
|
25 |
#![allow(clippy::cargo_common_metadata, clippy::no_effect_underscore_binding)]
|
83 |
//TODO: remove once async_trait works with this again
|
84 |
#![allow(clippy::no_effect_underscore_binding)]
|
2 |
#![deny(warnings)]
|
3 |
#![allow(clippy::no_effect_underscore_binding)]
|
10 |
// Seems to be broken right now: https://github.com/rust-lang/rust-clippy/issues/8300
|
11 |
#![allow(clippy::no_effect_underscore_binding)]
|
43 |
)]
|
44 |
#![allow(clippy::no_effect_underscore_binding)]
|
7 |
#![warn(clippy::unwrap_used)]
|
8 |
#![allow(clippy::no_effect_underscore_binding)]
|
9 |
)]
|
10 |
#![allow(clippy::no_effect_underscore_binding, clippy::unnecessary_wraps)]
|
10 |
#![deny(clippy::all)]
|
11 |
#![allow(clippy::module_name_repetitions, clippy::no_effect_underscore_binding)]
|
12 |
#![cfg_attr(
|
10 |
#![deny(clippy::all)]
|
11 |
#![allow(clippy::module_name_repetitions, clippy::no_effect_underscore_binding)]
|
12 |
#![cfg_attr(
|
11 |
#![deny(clippy::all)]
|
12 |
#![allow(clippy::module_name_repetitions, clippy::no_effect_underscore_binding)]
|
13 |
//! Derive macro helpers for the starchart crate.
|
1 |
#![allow(
|
2 |
clippy::no_effect_underscore_binding,
|
3 |
clippy::too_many_lines,
|