pub trait ToDim {
    // Required method
    fn to_dim(&self) -> TDim;
}
Expand description

Convenience trait to convert values to TDim.

Required Methods§

fn to_dim(&self) -> TDim

Convert self to a TDim.

Implementors§

§

impl<'a> ToDim for &'a TDim

§

impl<I> ToDim for Iwhere I: Into<TDim> + Clone,