chore: cargo fmt

This commit is contained in:
2025-05-17 20:08:16 +08:00
parent ec61eaa140
commit c3d365d486
5 changed files with 25 additions and 28 deletions

View File

@@ -1,5 +1,3 @@
use std::hash::Hash;
use hashbrown::{HashMap, HashSet};
use derive_more::Constructor;
@@ -25,7 +23,9 @@ impl<'vm> AttrSet<'vm> {
}
pub fn with_capacity(cap: usize) -> Self {
AttrSet { data: HashMap::with_capacity(cap) }
AttrSet {
data: HashMap::with_capacity(cap),
}
}
pub fn push_attr_force(&mut self, sym: usize, val: Value<'vm>) {