본문 바로가기
컴퓨터 활용(한글, 오피스 등)/기타

rust 기초

by 3604 2024. 6. 8.
728x90

 

 

visualstudio code 
- extension
  * rust
  * rust-analyzer: syntex highlighting, auto.., complete, go to definition, etc..
  *  CodeLLDB: Debugging and testing, runtime
- Package Extensions 
  * Even Better TOML: Syntax highlighting inside od, Cargo.toml file
  * Crates: Help us to select crates and releases a lot easy 
- Additional Extensions
  * Error Lens: Gives you on-th-fly error messages before you complie the code
  * Tabnine: AI-based auto-complete & Caht for Javascripts..

 

 

https://www.youtube.com/watch?v=ImoQWR02_gY&list=PLDi2liHqCnVqjPWcdAP-Qyvb3pKyYlZ0Y

 

https://doc.rust-lang.org/stable/book/ch04-03-slices.html

 

The Slice Type - The Rust Programming Language

Slices let you reference a contiguous sequence of elements in a collection rather than the whole collection. A slice is a kind of reference, so it does not have ownership. Here’s a small programming problem: write a function that takes a string of words

doc.rust-lang.org

 

https://rust-qt.github.io/qt/

 

Rust + Qt guide

Use C++ libraries from Rust

rust-qt.github.io

 

728x90