chore: cargo fmt
This commit is contained in:
@@ -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>) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use hashbrown::HashSet;
|
||||
use std::cell::OnceCell;
|
||||
use std::cell::RefCell;
|
||||
use hashbrown::HashSet;
|
||||
use std::hash::Hash;
|
||||
use std::rc::Rc;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user