pub struct DataFrame<'a> {
pub string: Vec<Vec<&'a str>>,
pub numerical: Vec<Vec<f64>>,
pub boolean: Vec<Vec<bool>>,
}Fields§
§string: Vec<Vec<&'a str>>§numerical: Vec<Vec<f64>>§boolean: Vec<Vec<bool>>Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DataFrame<'a>
impl<'a> RefUnwindSafe for DataFrame<'a>
impl<'a> Send for DataFrame<'a>
impl<'a> Sync for DataFrame<'a>
impl<'a> Unpin for DataFrame<'a>
impl<'a> UnwindSafe for DataFrame<'a>
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