summaryrefslogtreecommitdiff
path: root/vendor/http/src/convert.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/http/src/convert.rs')
-rw-r--r--vendor/http/src/convert.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/http/src/convert.rs b/vendor/http/src/convert.rs
deleted file mode 100644
index 682e0ed5..00000000
--- a/vendor/http/src/convert.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-macro_rules! if_downcast_into {
- ($in_ty:ty, $out_ty:ty, $val:ident, $body:expr) => {{
- if std::any::TypeId::of::<$in_ty>() == std::any::TypeId::of::<$out_ty>() {
- // Store the value in an `Option` so we can `take`
- // it after casting to `&mut dyn Any`.
- let mut slot = Some($val);
- // Re-write the `$val` ident with the downcasted value.
- let $val = (&mut slot as &mut dyn std::any::Any)
- .downcast_mut::<Option<$out_ty>>()
- .unwrap()
- .take()
- .unwrap();
- // Run the $body in scope of the replaced val.
- $body
- }
- }};
-}