We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d595264 commit fd74cc4Copy full SHA for fd74cc4
sqlx-core/src/postgres/types/ltree.rs
@@ -103,7 +103,8 @@ impl PgLTree {
103
}
104
105
/// creates ltree from an iterator with checking labels
106
- pub fn from_label_iter<I, S>(labels: I) -> Result<Self, PgLTreeParseError>
+ #[allow(clippy::should_implement_trait)]
107
+ pub fn from_iter<I, S>(labels: I) -> Result<Self, PgLTreeParseError>
108
where
109
String: From<S>,
110
I: IntoIterator<Item = S>,
0 commit comments