pub struct TimePyramidMap<K, V> {
pub data: BTreeMap<i8, TimePyramidLevel<K, V>>,
/* private fields */
}
Fields§
§data: BTreeMap<i8, TimePyramidLevel<K, V>>
Auto Trait Implementations§
impl<K, V> Freeze for TimePyramidMap<K, V>
impl<K, V> RefUnwindSafe for TimePyramidMap<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V> Send for TimePyramidMap<K, V>
impl<K, V> Sync for TimePyramidMap<K, V>
impl<K, V> Unpin for TimePyramidMap<K, V>where
V: Unpin,
impl<K, V> UnwindSafe for TimePyramidMap<K, V>
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