当前位置: 首页 > article >正文

rust学习: 有用的命令

在学习rust的过程中, 发现一些有用的命令, 记录之.

cargo subcommands

cargo 子命令(cargo subcommands)是一种有用的机制, 可以对名为cargo-xxx的命令通过 cargo xxx来调用.

cargo官方整理了一份cargo subcommands在这里:
https://github.com/rust-lang/cargo/wiki/Third-party-cargo-subcommands

cargo-expand

可以将rust中的宏展开.
代码仓库: https://github.com/dtolnay/cargo-expand

例子:
cargo new demo
修改main.rs内容如下:

#[derive(Debug)]
struct User {
    name: String,
    age: u8,
}

fn main() {
    let u = User{
        name: String::from("John"),
        age: 30,
    };
    println!("{:?}", u);
}

运行cargo expand, 效果:

#![feature(prelude_import)]
#[prelude_import]
use std::prelude::rust_2021::*;
#[macro_use]
extern crate std;
struct User {
    name: String,
    age: u8,
}
#[automatically_derived]
impl ::core::fmt::Debug for User {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(
            f,
            "User",
            "name",
            &self.name,
            "age",
            &&self.age,
        )
    }
}
fn main() {
    let u = User {
        name: String::from("John"),
        age: 30,
    };
    {
        ::std::io::_print(format_args!("{0:?}\n", u));
    };
}

这样方便我们了解宏展开的效果.

其他

tokei

统计代码, 据说是非常快. 我用过的统计代码的工具还有 https://github.com/AlDanial/cloc.
这里简单做个比较, 统计的仓库是 neo4j的5.4版本 :
在这里插入图片描述
在这里插入图片描述
可以看到, tokei统计的文件数比cloc要多, 应该是两个命令默认的规则不一样. 时间上面 tokei 是"秒出结果", 而cloc总用时11秒多.
确实如 tokei 介绍的一样: Tokei is very fast

(持续更新)


http://www.kler.cn/a/451414.html

相关文章:

  • 【ES6复习笔记】对象方法扩展(17)
  • React Native 集成原生Android功能
  • MySQL索引为什么是B+树
  • 低空经济的地理信息支撑:构建安全、高效的飞行管理体系
  • 网络安全攻防演练中的常见计策
  • 项目实战——高并发内存池
  • Datawhale-AI活动2024.12.24
  • 【docker】docker desktop 在windows上支持 host模式
  • SQL语法基础知识总结
  • 抢票神器:大麦网抢票实战教程
  • Qt笔记:文件I/O操作
  • Android studio开启虚拟机闪退、闪屏、死机、电脑重启
  • Web Server for Chrome 使用教程
  • 虚幻引擎结构之AActor
  • 电子应用设计方案70:智能挂钟系统设计
  • C语言——数据在内存中的存储
  • Django REST framework (DRF)中的api_view和APIView权限控制
  • 如何设置爬虫的访问频率?
  • 物理层知识要点
  • Oracle 数据库锁与阻塞分析与解决指南
  • 优化程序中的数据:从代数到向量解
  • 2024最新鸿蒙开发面试题合集-HarmonyOS NEXT Release(API 12 Release)
  • 【unity c#】深入理解string,以及不同方式构造类与反射的性能测试(基于BenchmarkDotNet)
  • 一款基于.NET开发的AI无损放大工具
  • vue3 的ref和reactive的区别?
  • 3D造型软件solvespace在windows下的编译