rust学习
Rust (github)
1. install (https://rustup.rs/)
2. play on line
curl https://sh.rustup.rs -sSf | sh
echo 'PATH="$PATH:$HOME/.cargo/bin"' >> ~/.bashrc
rustup doc
https://www.jdoodle.com/execute-rust-online
https://www.tutorialspoint.com/compile_rust_online.php
Tutorial org learn (entry)
1. org examaple (CN)
# install book local
git clone https://github.com/rust-lang-cn/rust-by-example-cn
cd rust-by-example-cn
cargo install mdbook
mdbook build
mdbook serve
grammar
2. book (Translations/CN) (Chinese)
rustup docs --book
4. Rust 基础笔记
5. view a project
cargo doc --open
6. Rust 语言中文版
7. Rust教程
8. Rust 编程语言入门
Grow with Rust
Comprehensive guide to the Rust standard library APIs.
Guide to the Rust editions.
A book on Rust’s package manager and build system.
Learn how to make awesome documentation for your crate.
Familiarize yourself with the knobs available in the Rust compiler.
In-depth explanations of the errors you may see from the Rust compiler.
Build your skills in an application domain
Learn how to build effective command line applications in Rust.
Use Rust to build browser-native libraries through WebAssembly.
Become proficient with Rust for Microcontrollers and other embedded systems.
Master Rust
The Rustonomicon is your guidebook to the dark arts of unsafe Rust. It’s also sometimes called “the ’nomicon.”
The Unstable Book has documentation for unstable features that you can only use with nightly Rust.
rust web framework comparison
rust python example
awesome
awesome rust (CN)
awesome c(CN)
awesome python
debugger
cargo install debug-here-gdb-wrapper # if you are on linux
cd debug-here/debug-me
echo | sudo tee /proc/sys/kernel/yama/ptrace_scope
cargo run
# In Cargo.toml. [dependencies]
debug-here = "0.2" # in source file. Now it looks like this: #[macro_use] extern crate debug_here; fn factorial(n: usize) -> usize {
let mut res = ;
debug_here!(); }
cat ~/.Xresources
config as follow:
! Use a nice truetype font and size by default...
xterm*faceName: DejaVu Sans Mono Book
xterm*faceSize: ! Every shell is a login shell by default (for inclusion of all necessary environment variables)
xterm*loginshell: true ! I like a LOT of scrollback...
xterm*savelines: ! double-click to select whole URLs :D
xterm*charClass: :,-:,-:,:,-:,:,: ! DOS-box colours...
xterm*foreground: rgb:a8/a8/a8
xterm*background: rgb://
xterm*color0: rgb://
xterm*color1: rgb:a8//
xterm*color2: rgb:/a8/
xterm*color3: rgb:a8//
xterm*color4: rgb://a8
xterm*color5: rgb:a8//a8
xterm*color6: rgb:/a8/a8
xterm*color7: rgb:a8/a8/a8
xterm*color8: rgb://
xterm*color9: rgb:fc//
xterm*color10: rgb:/fc/
xterm*color11: rgb:fc/fc/
xterm*color12: rgb://fc
xterm*color13: rgb:fc//fc
xterm*color14: rgb:/fc/fc
xterm*color15: rgb:fc/fc/fc ! right hand side scrollbar...
xterm*rightScrollBar: true
xterm*ScrollBar: true ! stop output to terminal from jumping down to bottom of scroll again
xterm*scrollTtyOutput: false
Tell your X server to incorporate those tweak
xrdb -merge ~/.Xresources
debug test case
How do I debug a failing cargo test in gdb?
Ask GDB to list all functions in a program
info functions
info functions regexp
16 Examining the Symbol Table (16 Examining the Symbol Table.)
rust-gdb /vagrant/target/debug/deps/libzfs-37d0dad38d98d030
b lib.rs:
run --test
How do I debug a failing cargo test in GDB?
debug info
$ cargo test --lib
Finished dev [unoptimized + debuginfo] target(s) in .03s
Running target/debug/deps/hello_cargo-b786631aa108fec0 running tests
test tests::it_works ... ok
test tests::test_add ... ok
test tests::test_bad_add ... FAILED failures: ---- tests::test_bad_add stdout ----
thread 'tests::test_bad_add' panicked at 'assertion failed: `(left == right)`
left: `-`,
right: ``', src/lib.rs:32:9
note: Run with `RUST_BACKTRACE=` environment variable to display a backtrace. failures:
tests::test_bad_add test result: FAILED. passed; failed; ignored; measured; filtered out error: test failed, to rerun pass '--lib' $ rust-gdb target/debug/deps/hello_cargo-b786631aa108fec0
GNU gdb (Ubuntu 7.11.-0ubuntu1~16.5) 7.11.
Copyright (C) Free Software Foundation, Inc.
License GPLv3+: GNU GPL version or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from target/debug/deps/hello_cargo-b786631aa108fec0...done.
(gdb) info functions test_bad_add
All functions matching regular expression "test_bad_add": File src/lib.rs:
static void hello_cargo::tests::test_bad_add::_$u7b$$u7b$closure$u7d$$u7d$::hacffd70b508c276a(struct closure *);
static void hello_cargo::tests::test_bad_add::h938c2acc2927d730(void);
(gdb) b hello_cargo::tests::test_bad_add::h938c2acc2927d730
Breakpoint at 0x139f7: file src/lib.rs, line .
(gdb) run --test test_bad_add
Starting program: /home/shhfeng/test/hello_cargo/target/debug/deps/hello_cargo-b786631aa108fec0 --test test_bad_add
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". running test
[New Thread 0x7ffff6ec4700 (LWP )]
[Switching to Thread 0x7ffff6ec4700 (LWP )] Thread "tests::test_bad" hit Breakpoint , hello_cargo::tests::test_bad_add::h938c2acc2927d730 () at src/lib.rs:
assert_eq!(bad_add(, ), );
(gdb) list
} #[test]
fn test_bad_add() {
// 这个断言会导致测试失败。注意私有的函数也可以被测试!
assert_eq!(bad_add(, ), );
}
}
(gdb) s
hello_cargo::bad_add::h460b365704f64b13 (a=, b=) at src/lib.rs:
debug detail
(gdb) bt
# hello_cargo::bad_add::h460b365704f64b13 (a=, b=) at src/lib.rs:
# 0x0000555555567a06 in hello_cargo::tests::test_bad_add::h938c2acc2927d730 () at src/lib.rs:
# 0x00005555555676ea in hello_cargo::tests::test_bad_add::_$u7b$$u7b$closure$u7d$$u7d$::hacffd70b508c276a () at src/lib.rs:
# 0x000055555556754e in core::ops::function::FnOnce::call_once::h859d77482d101f3d ()
at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libcore/ops/function.rs:
# 0x000055555557005f in {{closure}} () at src/libtest/lib.rs:
# call_once<closure,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libcore/ops/function.rs:
# call_box<(),closure> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/liballoc/boxed.rs:
# 0x00005555555b3fda in __rust_maybe_catch_panic () at src/libpanic_unwind/lib.rs:
# 0x000055555558d168 in try<(),std::panic::AssertUnwindSafe<alloc::boxed::Box<FnBox<()>>>> ()
at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panicking.rs:
# catch_unwind<std::panic::AssertUnwindSafe<alloc::boxed::Box<FnBox<()>>>,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panic.rs:
# {{closure}} () at src/libtest/lib.rs:
# 0x00005555555688a5 in std::sys_common::backtrace::__rust_begin_short_backtrace::h7988d0d59efc7a12 ()
at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/sys_common/backtrace.rs:
# 0x0000555555569045 in {{closure}}<closure,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/thread/mod.rs:
# call_once<(),closure> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panic.rs:
# do_call<std::panic::AssertUnwindSafe<closure>,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panicking.rs:
# 0x00005555555b3fda in __rust_maybe_catch_panic () at src/libpanic_unwind/lib.rs:
# 0x000055555557018d in try<(),std::panic::AssertUnwindSafe<closure>> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panicking.rs:
# catch_unwind<std::panic::AssertUnwindSafe<closure>,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/panic.rs:
# {{closure}}<closure,()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/libstd/thread/mod.rs:
# call_box<(),closure> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/liballoc/boxed.rs:
# 0x00005555555b371e in call_once<(),()> () at /rustc/91856ed52c58aa5ba66a015354d1cc69e9779bdf/src/liballoc/boxed.rs:
# start_thread () at src/libstd/sys_common/thread.rs:
# thread_start () at src/libstd/sys/unix/thread.rs:
# 0x00007ffff77b56ba in start_thread (arg=0x7ffff6ec4700) at pthread_create.c:
# 0x00007ffff72d541d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:
Debugging Rust code with vim and Conque-GDB
# install Vundle firstl list then vimproc.vim
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Plugin 'vim-scripts/Conque-GDB'
# in vim, :PluginInstall , :ConqueGdbExe rust-gdb , :ConqueGdb target/debug/$name
BKM:
How can I integrate gdb with Vim?
Using ConqueGDB to debug ARM microcontroller with OpenOCD
vi/vim使用进阶: 在VIM中使用GDB调试 – 使用vimgdb (vimgdb)
rustc -g main.rs --emit="obj,link"
gdb main # created two aliases for my bash to make things simple: alias rd='rustc -g --emit="obj,link"' compile_and_run() {
rustc -g --emit="obj,link" $ && gdb ${%.*}
} alias rdr=compile_and_run
REPL
# Link failure: cannot find -lncursesw https://github.com/murarth/rusti/issues/92
sudo apt-get install libncursesw5-dev
# completion https://github.com/racer-rust/racer#installation
rustup toolchain add nightly
cargo +nightly install racer
export PATH="$PATH:$HOME/.cargo/bin"
rustup install nightly-2016-08-01
rustup run nightly-2016-08-01 cargo install --git https://github.com/murarth/rusti
# https://github.com/murarth/rusti/issues/90 error while loading shared libraries: librustc_driver-c8005792.so
rustup run nightly-2016-08-01 ~/.cargo/bin/rusti
rustup run nightly-2016-08-01 target/debug/rusti
IDE
edition
Rustup for managing Rust versions
Tips
1. 调试宏代码
rustc --pretty expanded
2. Rust进阶之条件编译
#[cfg(foo)]
#[cfg(bar = "baz")] #[cfg(any(unix, windows))]
#[cfg(all(unix, target_pointer_width = ""))]
#[cfg(not(foo))]
Gramma
1. PhantomData
#![allow(unused)]
use std::marker::PhantomData;
use std::mem; fn main() {
#[allow(dead_code)]
struct Slice<'a, T: 'a> {
start: *const T,
end: *const T,
phantom: PhantomData<&'a T>,
} struct Slice1<T:> {
start: *const T,
end: *const T,
} println!("{:?}", mem::size_of::<Slice<i32>>());
println!("{:?}", mem::size_of::<Slice1<i32>>());
} // output:
// 16
// 16
2. Vec.with_capacity
3. typyof by type_name
base type of rust from Reference Doc
#![feature(core_intrinsics)]
use std::mem; fn print_type_of<T>(_: &T) {
println!("{}", unsafe { std::intrinsics::type_name::<T>() });
} fn main() {
print_type_of(&32.90); // prints "f64"
print_type_of(&vec![1, 2, 4]); // prints "std::vec::Vec<i32>"
print_type_of(&"foo"); // prints "&str"
let ln = mem::size_of::<i32>() as u64;
print_type_of(&ln) // prints "u64"
}
4. 错误处理(match, let and ? 用法)
Result is a good example.
5. 闭包
6. Option
简易教程:
极客学院:
rust学习的更多相关文章
- Rust学习资源和路线
Rust学习资源和路线 来源 https://rust-lang-cn.org/article/23 学习资源 The Rust Programming Language 堪称Rust的"T ...
- 【译】通过 Rust 学习解析器组合器 — Part 1
原文地址:Learning Parser Combinators With Rust 原文作者:Bodil 译文出自:掘金翻译计划 本文永久链接:https://github.com/xitu/gol ...
- [追热点]Rust学习资源整理
为什么选择Rust 在一次演讲中,谈到微软为解决相应内存问题所做的工作,微软研究人员 Matthew Parkinson 提到了微软正在开发的基于 Rust 的新编程语言 Verona. 摘自:[Ru ...
- Rust学习-阶段1学习总结
学习Rust已经两周了,基本上是断断续续的在学,或者是在上下班坐公交时,或者是在ODC没事做时.现在已经学习了Rust程序设计语言的前5章,是时候做一个总结了.关于数据类型或者if else这种内容我 ...
- rust学习小记(1)
本文的学习资料来自 Rust 程序设计语言 简体中文版 推荐用idea来写rust,装好插件rust和toml即可 cargo(包管理) 可以使用 cargo build 或 cargo check ...
- Rust学习笔记1
这是一份不错的rust教程,目前包括4个block和4个project.全部完成后可以用rust实现一个简单的key-value存储引擎. 注意:Windows下rust貌似会遇到一些bug,强烈建议 ...
- Rust学习笔记一 数据类型
写在前面 我也不是什么特别厉害的大牛,学历也很低,只是对一些新语言比较感兴趣,接触过的语言不算多也不算少,大部分也都浅尝辄止,所以理解上可能会有一些偏差. 自学了Java.Kotlin.Python. ...
- Rust学习(一)
为什么学习Rust 最近在看Linux相关新闻的时候,看到了Linux内核正在将Rust集成至内核内的消息,且越来越多的嵌入式开发可以使用Rust编程.以往笔者的技术栈只有 C语言 ,C++也只是浅尝 ...
- Rust 学习 0
安装Rust 后,本地有文档: file:///usr/local/share/doc/rust/html/index.html file:///usr/local/share/doc/rust/ht ...
- rust学习(二)
play on line match if #![allow(unused)] fn write_bar(size: u64){ match size{ o => println!(" ...
随机推荐
- NET Core 3.0 AutoFac替换内置DI的新姿势
原文:NET Core 3.0 AutoFac替换内置DI的新姿势 .NET Core 3.0 和 以往版本不同,替换AutoFac服务的方式有了一定的变化,在尝试着升级项目的时候出现了一些问题. 原 ...
- Http异常状态码解决方案。
415出现的原因:一般是传参的时候传的是json格式的参数,解决办法:先添加信息头管理器,然后在里面添加:(名称:Content-type)(值:application/json),这样就可以识别js ...
- Sonatype安装
https://www.cnblogs.com/wotoufahaiduo/p/11223834.html Sonatype Nexus Repository Manage admin ccf0cab ...
- Java 之 JSP
一.JSP 概述 Java Server Pages:java 服务器页面.页面中既可以指定定义 html标签,也可以定义 Java 代码. 二.原理 JSP 本质上就是一个 Servlet. 原理示 ...
- SocksCap代理
所有Windows应用都可以使用Socks代理上网,即使不支持Socks代理的应用也可以用Socks代理上网 配置代理 点击"添加",代理类型可以修改, 支持代理测试 运行程序 点 ...
- 个人项目 wc(java实现)
一.Github网址: https://github.com/Clarazhangbw/Wc.exe 二.PSP表 PSP2.1 Personal Software Process Stages 预估 ...
- linux 中常遇到的问题
1.上传文件是速度为零 xshell连接对应的Ubuntu服务器上在Ubuntu服务器上安装lrzszsudo apt install lrzsz xshell连接对应的centos服务器上 yum ...
- index.jsp乱码问题的解决
我们在做java项目的时候,都会有个首页,一般就是index.jsp,然后在index.jsp中引入相关的文件,一般也是引入打包过后的相关资源文件. 当index.jsp上面的中文出现乱码的时候,就需 ...
- 经典sql server基础语句不全
1.几个简单的基本的sql语句 选择: select * from table1 where 范围 插入: insert into table1(field1,field2) values(value ...
- ffmpeg音频视频转格式工具使用
ffmpeg是音频视频编解码工具,是一个开源项目,可以改变视频格式,比如mp4格式转ogg格式(有格式工厂,多这个东西纯属自己娱乐一下) 官方网址:www.ffmpeg.org 下载后找到ffmpeg ...