pub struct DataFrame<M, D>where
M: Display,{
pub metric: M,
pub data: IntMap<D>,
}
Fields§
§metric: M
§data: IntMap<D>
Trait Implementations§
Auto Trait Implementations§
impl<M, D> Freeze for DataFrame<M, D>where
M: Freeze,
impl<M, D> RefUnwindSafe for DataFrame<M, D>where
M: RefUnwindSafe,
D: RefUnwindSafe,
impl<M, D> Send for DataFrame<M, D>
impl<M, D> Sync for DataFrame<M, D>
impl<M, D> Unpin for DataFrame<M, D>
impl<M, D> UnwindSafe for DataFrame<M, D>where
M: UnwindSafe,
D: UnwindSafe,
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