Trait enso_flexer::prelude::TypeDisplay[][src]

pub trait TypeDisplay {
    fn type_display() -> String;
}
Expand description

Like Display trait but for types. However, unlike Display it defaults to impl::any::type_name if not provided with explicit implementation.

Required methods

Loading content...

Implementations on Foreign Types

impl<T, R, C, S> TypeDisplay for Matrix<T, R, C, S> where
    C: DimName,
    T: Scalar,
    R: DimName
[src]

Loading content...

Implementors

impl<T> TypeDisplay for T[src]

pub default fn type_display() -> String[src]

Loading content...