pub trait PYTHON {
    fn new<T>(v: Vec<Vec<T>>) -> Self
    where
        T: Into<f64> + Copy
; }

Required methods

Implementors