This commit is contained in:
Rob Ede 2022-01-28 21:26:33 +00:00
parent f4c81afe9c
commit 976c660f1f
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ impl<TlsErr, SvcErr> fmt::Display for TlsError<TlsErr, SvcErr> {
impl<TlsErr, SvcErr> Error for TlsError<TlsErr, SvcErr>
where
TlsErr: 'static + Error,
SvcErr: 'static + Error,
TlsErr: Error + 'static,
SvcErr: Error + 'static,
{
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {