Skip to main content

NumericVector

Trait NumericVector 

Source
pub trait NumericVector {
    type T: Numeric;
    type N: Size;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T: Numeric, N: Size> NumericVector for (T, N)

Source§

type T = T

Source§

type N = N

Implementors§