프로젝트를 진행하다 Rust tauri 로 작업을 하게 되었다.
몇 가지 개념 정리를 해보려 한다.
나의 영어가 갈수록 구려지고 있으므로 억지로라도 영어를 사용하겠다...
Rust란 무엇인가?
Rust is an open-sourcce system programming language which can provide more effective and safe way to build up the software. You can also use it for a simple repetitive job or an interface.
Rust 모듈 시스템
Rust provides clients with a set of the functions which help them to manage and construct the code structure. This program is normally consisted with the Crate, Module, and etc.
- Crate : Compilation Unit of Rust. This is the smallest unit compiled by Rust.
- Module : Rust module is like an constructor which can help programmers to in a crate unit.
- Path : You can simply name the code by using path. For example, path can be a definition for vector, code function and module etc. You can also manage the private info in the path by using module. s
Rust 표준 라이브러리 및 타사 크레이트
Rust Cargo 도구 및 종속성 관리자
Rust 는 언제 사용하는가