< 返回版块

Mike Tang 发表于 2024-06-05 02:37

is-tree - 将rust类型转换为树结构

类似于下面这个样子去定义:

use is_tree::*;

visitor! {
    pub enum Visitors, VisitorsMut {
        Root(Library visits [Module]),
        Branches(
            Module visits [Module, Function],
            Function
        )
    }
}

#[derive(Debug, IsTree)]
pub struct Library {
    #[tree(path_segment)]
    #[tree(branch(String))]
    pub name: String,
    #[tree(branch(Module, String))]
    pub root_module: Module
}

Repo:

BugStalker - 一个新的Rust调试器

既然是新的,界面一定要更友好。

Repo:

Helix+Yazi,实现目录树

很多人觉得Helix唯一的不足是没有目录树。现在有办法了:

你能认得上图中的Rust全家桶吗?至少4个Rust工具。

Repo

--

From 日报小组 Mike

社区学习交流平台订阅:

评论区

写评论

还没有评论

1 共 0 条评论, 1 页