Trait tract_pulse::internal::ToDim[]

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

Convenience trait to convert values to TDim.

Required methods

fn to_dim(&self) -> TDim

Expand description

Convert self to a TDim.

Implementors

impl<'a> ToDim for &'a TDim

pub fn to_dim(&self) -> TDim

impl<I> ToDim for I where
    I: Into<TDim> + Clone

pub fn to_dim(&self) -> TDim