
Rust
文章平均质量分 57
毒鸡蛋
这个作者很懒,什么都没留下…
展开
-
VSCode 报错:rust-analyzer requires glibc >= 2.28 in latest build
【代码】VSCode 报错:rust-analyzer requires glibc >= 2.28 in latest build。原创 2024-12-13 09:48:56 · 618 阅读 · 0 评论 -
VS Code 配置 Rust-Analyzer 报错
最后偷梁换柱的方式成功了,用自己下载rust-analyzer 替换了VSCode 的 rust-analyzer ,成功了。是把rust-analyzer 安装上了,但设置路径这一步一直不起效果。原创 2024-09-10 17:44:47 · 743 阅读 · 0 评论 -
VSCode rust-analyzer failed to load workspace: can‘t find Cargo.toml 或could not find Cargo.toml
VSCode 在的 rust-analyzer插件时报错。原创 2023-02-23 10:24:01 · 5147 阅读 · 1 评论 -
Rust 学习记录-注意事项
Rust 的数值上可以使用方法. 例如你可以用以下方法来将 13.14 取整:13.14_f32.round(),在这里我们使用了类型后缀,因为编译器需要知道 13.14 的具体类型整型溢出比如在 u8 的情况下,256 变成 0,257 变成 1,依此类推。当在 debug 模式编译时,Rust 会检查整型溢出,若存在这些问题,则使程序在编译时 panic(崩溃,Rust 使用这个术语来表明程序因错误而退出)。原创 2023-09-07 14:01:41 · 169 阅读 · 0 评论 -
rust 中实用转换
4、int:int的数据范围为-2147483648~+2147483647[-2^31~2^31-1]。3、u32:u32的数据范围为0+2147483647[02^32-1]。2、u16:u16的数据范围为0~+65535[0~2^16-1]。1、u8:u8的数据范围为0~+127[0~2^8-1]。2、u16:u16的内存占用空间大小为占用两个字节。3、u32:u32的内存占用空间大小为占用四个字节。4、int:int的内存占用空间大小为占用八个字节。1、u8:u8的内存占用空间大小为只占一个字节。原创 2023-09-07 14:00:57 · 356 阅读 · 0 评论 -
Rust:Cargo check 时 Updating crates.io index 发生错误
Rust:Cargo check 时 Updating crates.io index 发生错误问题解决:问题 Updating crates.io indexwarning: spurious network error (2 tries remaining): SSL error: syscall failure: Connection reset by peer; class=Os (2); code=Eof (-20)warning: spurious network error (1原创 2021-12-24 15:37:14 · 5487 阅读 · 4 评论