fix merge

This commit is contained in:
Rob Ede 2021-12-17 00:48:17 +00:00
parent 54a7e23131
commit b8b6230968
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ impl BoxBody {
/// Returns a mutable pinned reference to the inner message body type. /// Returns a mutable pinned reference to the inner message body type.
#[inline] #[inline]
pub fn as_pin_mut(&mut self) -> Pin<&mut (dyn MessageBody<Error = Box<dyn StdError>>)> { pub fn as_pin_mut(&mut self) -> Pin<&mut (dyn MessageBody<Error = Box<dyn fmt::Debug>>)> {
self.0.as_mut() self.0.as_mut()
} }
} }