pub trait TypeName {
    // Required method
    fn type_name() -> &'static str;
}

Required Methods§

source

fn type_name() -> &'static str

Returns the type name of the object as a string. (i.e. “u8”)

Implementors§

source§

impl<E> TypeName for Boolean<E>where E: Environment,

source§

impl<E> TypeName for Field<E>where E: Environment,

source§

impl<E: Environment> TypeName for Scalar<E>