diff options
author | Vika <vika@fireburn.ru> | 2024-08-04 22:08:48 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-17 16:05:41 +0300 |
commit | f185df030530ae52fcb60b4cc958ca98da8cfaa1 (patch) | |
tree | 868d6f7409294d4f9aa80ec790b6ec8312288354 /indieauth/src/scopes.rs | |
parent | 6d0df0fe7caebc44e9f05058c7b4cb9b6fd97ed9 (diff) | |
download | kittybox-f185df030530ae52fcb60b4cc958ca98da8cfaa1.tar.zst |
kittybox-indieauth: small code cleanups
Diffstat (limited to 'indieauth/src/scopes.rs')
-rw-r--r-- | indieauth/src/scopes.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indieauth/src/scopes.rs b/indieauth/src/scopes.rs index c664c55..e1df371 100644 --- a/indieauth/src/scopes.rs +++ b/indieauth/src/scopes.rs @@ -120,6 +120,9 @@ impl AsRef<[Scope]> for Scopes { self.0.as_ref() } } + +// Explicit implementation of ToString because of specific requirements. +#[allow(clippy::to_string_trait_impl)] impl ToString for Scopes { fn to_string(&self) -> String { self.0.iter() |