We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a044e commit 4e069c3Copy full SHA for 4e069c3
src/zalsa.rs
@@ -516,6 +516,9 @@ impl ErasedJar {
516
pub const fn erase<I: HasJar>() -> Self {
517
Self {
518
kind: I::KIND,
519
+ // This is a false positive of the lint on beta, fixed on nightly.
520
+ // FIXME: Remove this when nightly stabilizes.
521
+ #[allow(clippy::incompatible_msrv)]
522
type_id: TypeId::of::<I::Jar>,
523
type_name: std::any::type_name::<I::Jar>,
524
create_ingredients: <I::Jar>::create_ingredients,
0 commit comments