minor: Remove unused warnings

This commit is contained in:
selfhoster selfhoster 2026-09-03 21:53:31 +02:00
commit b37c0665d3
4 changed files with 5 additions and 1 deletions

View file

@ -39,7 +39,7 @@ impl LdapReturnError for InvalidSearchDn {
}
#[derive(Clone, Debug)]
pub struct SearchDn(Dn);
pub struct SearchDn(#[expect(unused)] Dn);
impl SearchDn {
pub fn from_dn_str(input: &str) -> Result<Self, InvalidSearchDn> {