aquatic_http: use Cow<_> for FailureResponse.failure_reason

This commit is contained in:
Joakim Frostegård 2021-10-16 00:19:58 +02:00
parent 31b88a5e9d
commit 2e68155bf4
2 changed files with 5 additions and 6 deletions

View file

@ -1,3 +1,4 @@
use std::borrow::Cow;
use std::io::Write;
use std::net::{Ipv4Addr, Ipv6Addr};
@ -131,11 +132,11 @@ impl ScrapeResponse {
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FailureResponse {
#[serde(rename = "failure reason")]
pub failure_reason: String,
pub failure_reason: Cow<'static, str>,
}
impl FailureResponse {
pub fn new(reason: &str) -> Self {
pub fn new<S: Into<Cow<'static, str>>>(reason: S) -> Self {
Self {
failure_reason: reason.into(),
}
@ -248,7 +249,7 @@ impl quickcheck::Arbitrary for ScrapeResponse {
impl quickcheck::Arbitrary for FailureResponse {
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
Self {
failure_reason: String::arbitrary(g),
failure_reason: String::arbitrary(g).into(),
}
}
}