#derive #type #typeof

typology

用于外国使用的类型推导

2 个版本

0.1.1 2024年5月13日
0.1.0 2024年5月13日

#816 in Rust 模式

MIT/Apache

3KB

类型学

用于外国使用的类型推导
use typology::{Typology, type_of};

#[derive(Debug, Typology)]
struct User {
  username: String,
  age: u8,
  other: Box<[String]>
}

// Will be String
type UsernameField = type_of!(User::username);

依赖

~255–700KB
~17K SLoC