pub(crate) struct NumberContainers {
pub(crate) nmap: HashMap<i32, BinaryHeap<Reverse<i32>>>,
pub(crate) minds: HashMap<i32, i32>,
pub(crate) nset: HashMap<i32, BTreeSet<i32>>,
}Expand description
2349m Design a Number Container System
Fields§
§nmap: HashMap<i32, BinaryHeap<Reverse<i32>>>§minds: HashMap<i32, i32>§nset: HashMap<i32, BTreeSet<i32>>Implementations§
Auto Trait Implementations§
impl Freeze for NumberContainers
impl RefUnwindSafe for NumberContainers
impl Send for NumberContainers
impl Sync for NumberContainers
impl Unpin for NumberContainers
impl UnsafeUnpin for NumberContainers
impl UnwindSafe for NumberContainers
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more