1 2 3 4 5 6 7 8 9
use iri_string::types::{UriQueryStr, UriQueryString}; pub struct Query(#[expect(unused)] UriQueryString); impl From<&UriQueryStr> for Query { fn from(value: &UriQueryStr) -> Self { Self(value.to_owned()) } }