summaryrefslogtreecommitdiff
path: root/vendor/bytes/src/fmt/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bytes/src/fmt/mod.rs')
-rw-r--r--vendor/bytes/src/fmt/mod.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/bytes/src/fmt/mod.rs b/vendor/bytes/src/fmt/mod.rs
deleted file mode 100644
index b8a0eafa..00000000
--- a/vendor/bytes/src/fmt/mod.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-macro_rules! fmt_impl {
- ($tr:ident, $ty:ty) => {
- impl $tr for $ty {
- fn fmt(&self, f: &mut Formatter<'_>) -> Result {
- $tr::fmt(&BytesRef(self.as_ref()), f)
- }
- }
- };
-}
-
-mod debug;
-mod hex;
-
-/// `BytesRef` is not a part of public API of bytes crate.
-struct BytesRef<'a>(&'a [u8]);