aboutsummaryrefslogtreecommitdiff
path: root/vendor/object/src/read/elf/compression.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/object/src/read/elf/compression.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/object/src/read/elf/compression.rs')
-rw-r--r--vendor/object/src/read/elf/compression.rs56
1 files changed, 0 insertions, 56 deletions
diff --git a/vendor/object/src/read/elf/compression.rs b/vendor/object/src/read/elf/compression.rs
deleted file mode 100644
index de2533f..0000000
--- a/vendor/object/src/read/elf/compression.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-use core::fmt::Debug;
-
-use crate::elf;
-use crate::endian;
-use crate::pod::Pod;
-
-/// A trait for generic access to [`elf::CompressionHeader32`] and [`elf::CompressionHeader64`].
-#[allow(missing_docs)]
-pub trait CompressionHeader: Debug + Pod {
- type Word: Into<u64>;
- type Endian: endian::Endian;
-
- fn ch_type(&self, endian: Self::Endian) -> u32;
- fn ch_size(&self, endian: Self::Endian) -> Self::Word;
- fn ch_addralign(&self, endian: Self::Endian) -> Self::Word;
-}
-
-impl<Endian: endian::Endian> CompressionHeader for elf::CompressionHeader32<Endian> {
- type Word = u32;
- type Endian = Endian;
-
- #[inline]
- fn ch_type(&self, endian: Self::Endian) -> u32 {
- self.ch_type.get(endian)
- }
-
- #[inline]
- fn ch_size(&self, endian: Self::Endian) -> Self::Word {
- self.ch_size.get(endian)
- }
-
- #[inline]
- fn ch_addralign(&self, endian: Self::Endian) -> Self::Word {
- self.ch_addralign.get(endian)
- }
-}
-
-impl<Endian: endian::Endian> CompressionHeader for elf::CompressionHeader64<Endian> {
- type Word = u64;
- type Endian = Endian;
-
- #[inline]
- fn ch_type(&self, endian: Self::Endian) -> u32 {
- self.ch_type.get(endian)
- }
-
- #[inline]
- fn ch_size(&self, endian: Self::Endian) -> Self::Word {
- self.ch_size.get(endian)
- }
-
- #[inline]
- fn ch_addralign(&self, endian: Self::Endian) -> Self::Word {
- self.ch_addralign.get(endian)
- }
-}