pub trait ValTypeInfo {
    // Required method
    fn info(self) -> &'static str;
}
Available on crate feature val_type_info only.
Expand description

Trait value type info.

Required Methods§

source

fn info(self) -> &'static str

Returns value type info.

Implementations on Foreign Types§

source§

impl ValTypeInfo for i8

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for i32

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for i64

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for u64

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for usize

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for u32

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for i128

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for isize

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for u16

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for u128

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for i16

source§

fn info(self) -> &'static str

source§

impl ValTypeInfo for u8

source§

fn info(self) -> &'static str

Implementors§