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