idlercloud
Results
2
issues of
idlercloud
> `str` 类型是硬编码进可执行文件,也无法被修改 这一句是比较显然的错误。作者希望表述的应该是字符串字面量,如 `"abc"` 这样直接包含在源代码中的字符串,其类型为 `&'static str`。(注意,这并不意味着有 `'static` 生命周期的 `str` 就不可变了,仍然有办法构造出具有 `'static` 生命周期的 `&mut str`) 然而 `str` 类型本身是可以修改的,可以试着用 `Box` 调用 `make_ascii_uppercase()` 验证。 正如 `String` 只是 `Vec` 的包装,`str` 也基本上只是 `[u8]`...
Hi, thanks for this crate and the book. However when browsering the tutorial and source code, I found some possible improvements, as well as possibly misleading comments. The `get_*_by_iid()` methods...
A-Asset
C-Performance
D-Straightforward
S-Ready-For-Implementation