161 dontpanic92/OpenPAL3 仙三开源版 - The efforts to create an open-source implementation of Chinese Paladin 3 557 0 2024-05-18 162 limitcool/bilistream bilistream是一个支持无人值守自动转播Twitch和Youtube(包括预告类型直播)的B站直播自动转播工具。 119 0 2024-07-21 163 al8n/stretto Stretto ...
use std::fs::File; use std::io; use std::io::prelude::*; struct Info { name: String, age: i32, rating: i32, } fn write_info(info: &Info) -> io::Result<()> { let mut file = File::create("my_best_friends.txt").unwrap(); if let Err(e) = writeln!(&mut file, "...
Rust 程序设计语言 简体中文版.pdf 由mdbook-typst-pdf生成,有任何问题欢迎 issue 或 PR 本翻译主要采用mdBook格式。同时支持GitBook,但会缺失部分功能,如一些代码没有语法高亮。 本翻译加速查看站点有: 深圳站点:http://120.78.128.153/rustbook GitBook.com地址:https://kaisery.github.io/trpl-zh-cn/...
epoll_create用于创建epoll实例,返回epoll实例的句柄;epoll_ctl用于给epoll实例增加、修改、删除待检查的IO操作事件;epoll_wait用于检查每个通过epoll_ctl注册到epoll实例的IO操作,看每个IO操作是否就绪/有期望的事件发生。具体的epoll这三个接口的使用,后面结合代码示例来讲解。这里先解释下epoll的IO事件检查规则。如...
use std::fs::File; use std::io::ErrorKind; fn main() { let greeting_file_result = File::open("hello.txt"); let greeting_file = match greeting_file_result { Ok(file) => file, Err(error) => match error.kind() { ErrorKind::NotFound => match File::create("hello.txt") { Ok...
async<A>fnread<constT>(reader:&mutimplRead*A)->std::io::Result<constT> 上一个傻帽语法还是 ...
先来看个create的例子,假设现在我们有个宏make_local!,这个宏展开会变成let local = 0。这表示这个宏创建(creates)了一个标识符local。 make_local!();assert_eq!(local,0); 然后我们使用assert_eq!去比较这个local标识符和0,那么这里make_local!这个宏的展开产物就被上下文环境引用了,所以这个make_local!是一...
rustup镜像配置 rustup 安装方法可参考 官方的 README. 设置环境变量 RUSTUP_DIST_SERVER(用于更新 toolchain) 以及 RUSTUP_UPDATE_ROOT(用于更新 rustup) create.io镜像配置 在 $HOME/.cargo/config git 安装方法 环境变量 github 转载 mob604756eb6938 ...
io::stdin().read_line(&mutguess).expect("无法读取行"); 所有权 所有权可以理解为命名空间+作用域+指针。 基本数据类型(值类型)变量在栈空间中可以复制。先给x赋值9(let x = 9),将x赋值给y等同于直接给y赋值9(let y = x 等同于let y = 9) ...
设置环境变量 RUSTUP_DIST_SERVER(用于更新 toolchain) 以及 RUSTUP_UPDATE_ROOT(用于更新 rustup) create.io镜像配置 在 $HOME/.cargo/config git 安装方法 环境变量 github 转载 mob604756eb6938 2019-12-26 10:24:00 446阅读 2评论 rust 设置国内镜像 rust国内镜像 rust rust镜像 git 创建文件 ...