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

Required Methods§

source

fn type_name() -> &'static str

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl PublicVarType for bool

source§

fn type_name() -> &'static str

source§

impl PublicVarType for f32

source§

fn type_name() -> &'static str

source§

impl PublicVarType for f64

source§

fn type_name() -> &'static str

source§

impl PublicVarType for i32

source§

fn type_name() -> &'static str

source§

impl PublicVarType for i64

source§

fn type_name() -> &'static str

source§

impl PublicVarType for u32

source§

fn type_name() -> &'static str

source§

impl PublicVarType for u64

source§

fn type_name() -> &'static str

source§

impl PublicVarType for String

source§

fn type_name() -> &'static str

Implementors§