Merge pull request #375 from dtolnay/unsized

Support dynamically sized field in error
This commit is contained in:
David Tolnay 2024-11-08 12:24:18 -05:00 committed by GitHub
commit 2f6bff36fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -13,7 +13,7 @@ pub trait AsDisplay<'a>: Sealed {
impl<'a, T> AsDisplay<'a> for &T
where
T: Display + 'a,
T: Display + ?Sized + 'a,
{
type Target = &'a T;
@ -44,7 +44,7 @@ impl<'a> AsDisplay<'a> for PathBuf {
#[doc(hidden)]
pub trait Sealed {}
impl<T: Display> Sealed for &T {}
impl<T: Display + ?Sized> Sealed for &T {}
#[cfg(feature = "std")]
impl Sealed for Path {}
#[cfg(feature = "std")]

View file

@ -22,6 +22,13 @@ enum EnumPathBuf {
Read(PathBuf),
}
#[derive(Error, Debug)]
#[error("{tail}")]
pub struct UnsizedError {
pub head: i32,
pub tail: str,
}
fn assert<T: Display>(expected: &str, value: T) {
assert_eq!(expected, value.to_string());
}