摘要: enum Message { ChangeColor(u8, u8, u8), Echo(String), Move(Point), Quit, } struct Point { x: u8, y: u8, } struct State { color: (u8, u8, u8), position 阅读全文
posted @ 2024-02-26 23:44 Zhentiw 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Web API, such as setTimeout setInterval which goes into Macrotask Queue; Microtask such as, code after await, Promise, all go to Microtask Queue direc 阅读全文
posted @ 2024-02-26 16:03 Zhentiw 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Code: config.go package projector import ( "fmt" "os" "path" ) type Operation = int const ( Print Operation = iota Add Remove ) type Config struct { A 阅读全文
posted @ 2024-02-26 15:47 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: The TryFrom and try_into() methods are part of the. standard libaray's conversion traits, designed to handle conversions between types in a fallible m 阅读全文
posted @ 2024-02-26 14:54 Zhentiw 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://doc.rust-lang.org/std/string/struct.String.html#method.trim fn string_slice(arg: &str) { println!("{}", arg); } fn string(arg: String) { print 阅读全文
posted @ 2024-02-26 03:15 Zhentiw 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Structs contain data, but can also have logic. In this exercise we have defined the Package struct and we want to test some logic attached to it. #[de 阅读全文
posted @ 2024-02-26 02:51 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://doc.rust-lang.org/stable/book/ch05-01-defining-structs.html#creating-instances-from-other-instances-with-struct-update-syntax Similar to Javas 阅读全文
posted @ 2024-02-26 02:44 Zhentiw 阅读(6) 评论(0) 推荐(0) 编辑