码迷,mamicode.com
首页 >  
搜索关键字:rust    ( 680个结果
rust 实现协程池
use crossbeam_channel::{Receiver, bounded}; use tokio::time::{Duration, delay_for}; #[tokio::main] async fn main() { let (s, r) = bounded(10); for i i ...
分类:其他好文   时间:2021-07-19 16:57:38    阅读次数:0
FastAPI - most popular API framework in python
FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based ...
分类:编程语言   时间:2021-07-16 17:45:01    阅读次数:0
DBA学RUST设计模式--观察者模式
#[derive(Debug, Clone)] struct Work { //消息实体,存储消息 id: i32 } struct WorkMaster { //消息管理者属性 workers: Vec<Box<Worker>> //存储注册的接收者。每个接收者须实现Worker接口才能注册进。 ...
分类:数据库   时间:2021-07-01 16:45:32    阅读次数:0
Ubuntu安装exa
Ubuntu安装exa安装exa安装rust安装exa替代ls安装exaexa github项目地址https://github.com/ogham/exa查看官方文档可知,Ubuntu20.10以及更新的版本才可以用命令安装 sudo apt install exa安装rustrust官方给出的安 ...
分类:系统相关   时间:2021-06-28 19:02:12    阅读次数:0
DBA学RUST设计模式--状态模式
一个对象会有不同的状态,不同的操作会影响状态,同时状态改变,也会影响对象和业务流程。例如,薛定谔的猫有3种状态:生、死、不确定,假设3种状态可转换. 名称为CatState的trait描述了对猫的所有状态操作: trait CatState { fn make_live(self: Box<Self ...
分类:数据库   时间:2021-06-28 18:49:22    阅读次数:0
pip安装第三方包
介绍两种pip使用方式: 方式一 下载第三方包到本地: python -m pip download pyproj==2.4.2.post1 -d "D:\software installation package\python安装\包" --trusted-host pypi.douban.com ...
分类:其他好文   时间:2021-06-03 18:03:11    阅读次数:0
[Linux小技巧]如何使用exa让你的ls看起来高大上
第一步,下载并准备安装exa软件 1.安装依赖 exa软件由rust编写,所以首先必须安装rust 在合适的位置下载软件 wget https://static.rust-lang.org/rustup.sh 运行 sudo sh rustup.sh 2.下载软件 来到exa官方网站:https:/ ...
分类:系统相关   时间:2021-05-24 12:38:39    阅读次数:0
cubestore 使用需要注意的一些问题
通过尝试运行cubestore 发现了一个问题,以下是一些整理 共享存储问题 如果注意查看官方文档以及docker-compose 环境会发现都是挂载了同一个数据卷,这个很重要,目前官方没说明通过实践发现这个是必须的(使用blob 存储会好些,s3.。。) 参考配置 目前官方对于共享配置提供了完整的 ...
分类:其他好文   时间:2021-05-03 13:19:25    阅读次数:0
<<Rust程序设计语言>>个人版(3.3: 函数/3.4: 注释/3.5: 控制流)
常见程序设计概念 函数 函数在rust中无处不在, 对于rust程序来讲, main函数是许多程序的入口, 之前我们知道, 建立一个函数的关键字是 fn rust使用下划线命名法来命名, 这个之前也有提到过 我们来看下面的程序 fn main() { println!("Hello, world!" ...
分类:编程语言   时间:2021-04-30 12:12:35    阅读次数:0
rust环境配置
安装cargo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh vscode插件 ext install rust-lang.rust ext install vadimcn.vscode-lldb 调试配置 launsh ...
分类:其他好文   时间:2021-04-29 12:07:59    阅读次数:0
680条   1 2 3 4 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!