chore: cargo clippy

This commit is contained in:
2025-07-17 16:34:18 +08:00
parent 781f701891
commit 74e819c678
9 changed files with 57 additions and 43 deletions

View File

@@ -19,7 +19,7 @@ impl Default for List {
}
}
impl<'gc, T: Into<EcoVec<Value>>> From<T> for List {
impl<T: Into<EcoVec<Value>>> From<T> for List {
fn from(value: T) -> Self {
Self { data: value.into() }
}