diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-07 23:28:45 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-07 23:28:45 +0100 |
| commit | 9d1e1772c02032f70b6db584dddae8fd06b490d6 (patch) | |
| tree | 9d97b4d3e1252c4b99f30a19f339700eaab44c45 /common/object/src/tag.rs | |
| parent | d1b7691adb7c40bf21053d324fdac16c544cd536 (diff) | |
| download | jellything-9d1e1772c02032f70b6db584dddae8fd06b490d6.tar jellything-9d1e1772c02032f70b6db584dddae8fd06b490d6.tar.bz2 jellything-9d1e1772c02032f70b6db584dddae8fd06b490d6.tar.zst | |
manual clippy
Diffstat (limited to 'common/object/src/tag.rs')
| -rw-r--r-- | common/object/src/tag.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/object/src/tag.rs b/common/object/src/tag.rs index c09af27..c937d43 100644 --- a/common/object/src/tag.rs +++ b/common/object/src/tag.rs @@ -34,6 +34,7 @@ impl<T: ?Sized> Display for TypedTag<T> { self.0.fmt(f) } } +#[allow(clippy::non_canonical_clone_impl)] impl<T: ?Sized> Clone for TypedTag<T> { fn clone(&self) -> Self { Self(self.0, PhantomData) |