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.