Un-hide a few elidded lifetimes

This commit is contained in:
Quentin Gliech
2025-08-18 10:35:28 +02:00
parent eded025ff4
commit bef50474ab
4 changed files with 5 additions and 5 deletions

View File

@@ -173,7 +173,7 @@ impl std::ops::Deref for AuthorizationGrant {
impl AuthorizationGrant {
#[must_use]
pub fn parse_login_hint(&self, homeserver: &str) -> LoginHint {
pub fn parse_login_hint(&self, homeserver: &str) -> LoginHint<'_> {
let Some(login_hint) = &self.login_hint else {
return LoginHint::None;
};