标签: rust introspection
有没有办法在运行时检查对象提供的特征。类似于pythons dir()?我希望检查core::str::StrSplits<'_>的内容,并希望能够查看它实现的特征。
core::str::StrSplits<'_>
答案 0 :(得分:2)
在运行时没有设施可以做到这一点;然而,在编译时,有,这就是rustdoc所做的。
通过它,您可以看到core::str::StrSplits documentation之类的内容,其中包含您所请求的信息。
core::str::StrSplits