Difference between revisions of "Rust"
Jump to navigation
Jump to search
m (Question about Rust .await programmatic element) |
|||
| Line 34: | Line 34: | ||
(1) For what is Rust language 'derive' keyword used? | (1) For what is Rust language 'derive' keyword used? | ||
| − | #[derive(Clone)] | + | #[derive(Clone)] |
| − | #[derive(Default)] | + | #[derive(Default)] |
| + | |||
| + | (2) How is the `.await` method working, and is this kind of element called a method in Rust? | ||
Revision as of 22:01, 18 December 2025
Notes on Rust programming language
- Overview -
This local page about the programming language of Rust aims to answer among other questions: How suitable is Rust for embedded development?
Rust By Example (RBE) home page here:
Rust language for embedded systems:
- https://docs.rust-embedded.org/book/
- https://docs.rust-embedded.org/embedonomicon/memory-layout.html
Install Rust on Ubuntu:
Adoption and popularity of Rust:
2025-12-16
Rust crates
^ Questions to Answer
(1) For what is Rust language 'derive' keyword used?
#[derive(Clone)]
#[derive(Default)]
(2) How is the `.await` method working, and is this kind of element called a method in Rust?