Skip to content

Commit b4b2271

Browse files
authored
E does not need to implement std::fmt::Debug (#960)
1 parent ceaa3ef commit b4b2271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

progenitor-client/src/progenitor_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub struct ResponseValue<T> {
6363

6464
impl<T: DeserializeOwned> ResponseValue<T> {
6565
#[doc(hidden)]
66-
pub async fn from_response<E: std::fmt::Debug>(
66+
pub async fn from_response<E>(
6767
response: reqwest::Response,
6868
) -> Result<Self, Error<E>> {
6969
let status = response.status();

0 commit comments

Comments
 (0)