mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
28 lines
526 B
Rust
28 lines
526 B
Rust
use std::fmt::Display;
|
|
use std::path::{self, Path, PathBuf};
|
|
|
|
pub trait DisplayAsDisplay {
|
|
fn as_display(&self) -> Self;
|
|
}
|
|
|
|
impl<T: Display> DisplayAsDisplay for &T {
|
|
fn as_display(&self) -> Self {
|
|
self
|
|
}
|
|
}
|
|
|
|
pub trait PathAsDisplay {
|
|
fn as_display(&self) -> path::Display<'_>;
|
|
}
|
|
|
|
impl PathAsDisplay for Path {
|
|
fn as_display(&self) -> path::Display<'_> {
|
|
self.display()
|
|
}
|
|
}
|
|
|
|
impl PathAsDisplay for PathBuf {
|
|
fn as_display(&self) -> path::Display<'_> {
|
|
self.display()
|
|
}
|
|
}
|