Trait DType

Source
pub trait DType: Any {
    // Provided methods
    fn type_id(&self) -> TypeId { ... }
    fn type_name(&self) -> &'static str { ... }
}
Expand description

DType is a trait designed to provide additional information regarding the type of a particular value.

Provided Methods§

Source

fn type_id(&self) -> TypeId

Source

fn type_name(&self) -> &'static str

Implementors§