摘要:
title: rust存取一个含有borrowed域的结构体 date: 2021-07-28 10:31:32 直接存取不可以: use std::io; use serde::{Serialize, Deserialize}; extern crate bincode; #[derive(Deb 阅读全文
摘要:
title: rust 定时执行 date: 2021-08-16 16:20:40 tokio = { "version" = "1.10", features = ["full"] } use tokio::time; async fn print() { let mut interval = 阅读全文
摘要:
title: rust 堆上二维数组 date: 2021-09-15 16:56:00 用ndarray: https://docs.rs/ndarray/0.15.3/ndarray/ Rust 多维数组 ndarray 例子: use ndarray::Array2; fn main() { 阅读全文
摘要:
title: rust serde deserialize borrowed member date: 2021-07-27 17:04:01 对于borrowed成员,deserializer可以借用输入里的对应部分。serde_json序列化时会将所有部分转换成字符串,这样除非这个成员是字符串, 阅读全文
摘要:
title: rust scoped thread date: 2021-05-19 19:00:03 rust里,std::thread::spawn要求传入的闭包的生命周期必须是'static的,也就是说闭包中不能借用局部变量,因为rust不知道这个局部变量会不会突然就被释放了。但是一般情况下, 阅读全文
摘要:
title: rust scoped thread pool date: 2021-08-09 16:53:11 用rayon即可。 mod a { fn fun(a: &mut i32) -> i32 { *a += 1; return *a + 233; } pub fn main() { le 阅读全文
摘要:
title: 算法竞赛中rust的一种比较健壮的读入 date: 2020-08-25 23:53:13 tags: 以PAT 甲级1004为例:https://pintia.cn/problem-sets/994805342720868352/exam/problems/9948055214317 阅读全文
摘要:
title: rust识别EOF date: 2020-08-17 16:45:54 tags: 参考:https://stackoverflow.com/questions/41210691/how-to-check-for-eof-in-read-line-in-rust-1-12 如果read 阅读全文
摘要:
title: rust用BufReader加速stdin读取 date: 2021-11-17 17:30:21 tags: BufReader官方文档:https://doc.rust-lang.org/stable/std/io/struct.BufReader.html use std::io 阅读全文
摘要:
title: rust格式控制 date: 2021-10-12 20:59:05 官方教程:https://doc.rust-lang.org/std/fmt/ 注意,标准库里的格式控制字符串必须是字面量: https://www.reddit.com/r/rust/comments/48jzw0 阅读全文