码迷,mamicode.com
首页 >  
搜索关键字:rust    ( 680个结果
Cargo 依赖下载慢、设置镜像
在用户目录.cargo目录新建config文件,把以下配置复制到文件中 [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'ustc' [source.ustc] # ...
分类:其他好文   时间:2021-02-01 11:41:55    阅读次数:0
Managing Growing Projects
Managing Growing Projects Packages and Crates A crate is a binary or library. The crate root is a source file that the Rust Compiler starts from and m ...
分类:Windows程序   时间:2021-01-26 11:56:13    阅读次数:0
Rancher部署mysql8
环境变量设置 设置root用户的密码 端口映射 处理用户远程连接登录异常 create user 'taishi'@'%' identified by 'aransfar@123'; grant all privileges on *.* to 'taishi'@'%' with grant opt ...
分类:数据库   时间:2021-01-19 11:46:37    阅读次数:0
【译】Async/Await(一)——多任务
原文标题:Async/Await 原文链接:https://os.phil-opp.com/async-await/#multitasking 公众号: Rust 碎碎念 翻译 by: Praying 在本文中我们将讨论协作式多任务(cooperative multitasking)和 Rust 中 ...
分类:其他好文   时间:2021-01-18 10:53:06    阅读次数:0
systemd-resolved and resolvctl on ubuntu; 127.0.0.53 nameserver;
前段时间,我偶然进行查看linux DNS配置,通过查看 /etc/resolv.conf 文件,得到如下结果: ? devices ll /etc/resolv.conf lrwxrwxrwx 1 root root 39 12月 28 18:55 /etc/resolv.conf -> ../r ...
分类:系统相关   时间:2021-01-06 12:29:13    阅读次数:0
rust FnMut 闭包
fn consume_with_relish<F>(mut func: F) where F: FnMut() -> String { // `func` consumes its captured variables, so it cannot be run more // than once p ...
分类:其他好文   时间:2021-01-02 11:07:10    阅读次数:0
学习Rust 集合与字符串
Rust 语言是一种高效、可靠的通用高级语言。其高效不仅限于开发效率,它的执行效率也是令人称赞的,是一种少有的兼顾开发效率和执行效率的语言。 集合(Collection)是数据结构中最普遍的数据存放形式,Rust 标准库中提供了丰富的集合类型帮助开发者处理数据结构的操作。 向量 向量(Vector) ...
分类:其他好文   时间:2021-01-02 10:51:05    阅读次数:0
rust 迭代器
https://blog.csdn.net/guiqulaxi920/article/details/78823541 fn main() { // Basic Range (exclusive on the right) for i in 1..11 { print!("{} ", i); } p ...
分类:其他好文   时间:2021-01-01 12:55:18    阅读次数:0
How Arc works in Rust
The Atomic Reference Counter (Arc) type is a smart pointer that lets you share immutable data across threads in a thread-safe way. I couldn’t find any ...
分类:其他好文   时间:2021-01-01 12:32:52    阅读次数:0
解决Rust -- update crates.io过慢的问题
解决Rust -- update crates.io过慢的问题 在经过一系列操作,科,学,上,网等方法之后亲测无效,想到更改rust的文件源来加快速度 首先进入电脑的cargo目录,MAC OS 默认安装在 ~/.cargo下: cd ~/.cargo 1 创建一个config文件,这里使用vim编 ...
分类:其他好文   时间:2021-01-01 12:17:12    阅读次数:0
680条   上一页 1 2 3 4 5 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!