Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justxuewei/rust-learning
https://github.com/justxuewei/rust-learning
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/justxuewei/rust-learning
- Owner: justxuewei
- License: mit
- Created: 2021-12-11T14:53:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T08:28:55.000Z (almost 3 years ago)
- Last Synced: 2024-11-09T05:33:33.621Z (3 months ago)
- Language: Rust
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Learning
Highlight Contents
- [ownership](./ownership): 所有权介绍,对生命周期(lifetimes)由一定的尝试,关于生命周期更详细的内容可以参见 [generics-trait-lifecycle](./generics-trait-lifecycle)。
- [smart-pointers](./smart-pointers):主要介绍了 `Box`, `Rc` 和 `RecCell` 三种不同的智能指针。