about summary refs log tree commit diff
path: root/indieauth/src/scopes.rs
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2024-08-04 22:08:48 +0300
committerVika <vika@fireburn.ru>2024-08-17 16:05:41 +0300
commitf185df030530ae52fcb60b4cc958ca98da8cfaa1 (patch)
tree868d6f7409294d4f9aa80ec790b6ec8312288354 /indieauth/src/scopes.rs
parent6d0df0fe7caebc44e9f05058c7b4cb9b6fd97ed9 (diff)
kittybox-indieauth: small code cleanups
Diffstat (limited to 'indieauth/src/scopes.rs')
-rw-r--r--indieauth/src/scopes.rs3
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()