mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Support dynamically sized field in error
This commit is contained in:
parent
8e8e27376c
commit
24c04daea9
1 changed files with 2 additions and 2 deletions
|
@ -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")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue