aquatic http protocol: Response::from_bytes: set to unimplemented!()

This commit is contained in:
Joakim Frostegård 2020-07-20 18:32:07 +02:00
parent 95e6eebd67
commit 2521c89109

View file

@ -189,9 +189,7 @@ impl Response {
} }
pub fn from_bytes(bytes: &[u8]) -> anyhow::Result<Self> { pub fn from_bytes(bytes: &[u8]) -> anyhow::Result<Self> {
Ok(Self::Failure(FailureResponse { unimplemented!()
failure_reason: "fake response".to_string()
}))
} }
} }