aboutsummaryrefslogtreecommitdiff
path: root/vendor/thiserror/src/display.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/thiserror/src/display.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/thiserror/src/display.rs')
-rw-r--r--vendor/thiserror/src/display.rs40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/thiserror/src/display.rs b/vendor/thiserror/src/display.rs
deleted file mode 100644
index 27098f1..0000000
--- a/vendor/thiserror/src/display.rs
+++ /dev/null
@@ -1,40 +0,0 @@
-use std::fmt::Display;
-use std::path::{self, Path, PathBuf};
-
-#[doc(hidden)]
-pub trait AsDisplay<'a> {
- // TODO: convert to generic associated type.
- // https://github.com/dtolnay/thiserror/pull/253
- type Target: Display;
-
- fn as_display(&'a self) -> Self::Target;
-}
-
-impl<'a, T> AsDisplay<'a> for &T
-where
- T: Display + 'a,
-{
- type Target = &'a T;
-
- fn as_display(&'a self) -> Self::Target {
- *self
- }
-}
-
-impl<'a> AsDisplay<'a> for Path {
- type Target = path::Display<'a>;
-
- #[inline]
- fn as_display(&'a self) -> Self::Target {
- self.display()
- }
-}
-
-impl<'a> AsDisplay<'a> for PathBuf {
- type Target = path::Display<'a>;
-
- #[inline]
- fn as_display(&'a self) -> Self::Target {
- self.display()
- }
-}