1. Rust_kr_Welcome소개
  2. Appendix & Q&A & 기여하기
    1. Appendix
    2. justfile 러스트로 만든 makefile비슷한거
    3. Rust OS 프로젝트
    4. Rust Linux 프로젝트
    5. 개발 로드맵&참고서적
  3. 코딩의 기본 원리- Zig, C,C++, etc.
  4. Chapter 1(코딩의 원리)
    1. 러스트 언어와 다른언어의 차이점
      1. 대부분의 코딩의 공통적인것들
      2. zig언어
      3. C++언어
      4. C언어
        1. C언어 공식문서
      5. Kotlin언어
      6. Swift언어
      7. C#언어
    2. Rust의 전체적인 그림 잡기
      1. struct
  5. Rust Lang
  6. Rust_Syntax러스트문법
    1. Rust_Getting_Started설치및 시작
    2. Programming_fake_install가짜인스톨프로그램 만들기
    3. Common Programming Concepts프로그래밍컨셉
      1. Variables&Mutability변수불편
      2. Data_Types데이터 타입
      3. Functions기능만들기fn
      4. Comments주석처리
      5. Control Flow(if, else if, loop, while등등)
    4. OwnerShip오너쉽_borrowing
    5. Struct를 이용한 구조화
      1. Struct 정의 및 인스턴스화(Instantiating)
    6. Enums and Pattern Matching
      1. Defining an Enum 정의
    7. 데이터 저장Common Collections
      1. Vectors데이터 저장
      2. Matrix매트릭스 저장_다차원 구조로 저장
        1. C언어_Matrix매트릭스 저장_다차원 구조로 저장
  7. Rust 고급 기술
  8. Rust 고급 기술
    1. Traits
      1. D&D던전앤드래곤 만들어보기
    2. Sizedness-in-rust
    3. C++오너쉽개념 기초 C++11에서 가져옴(move_semantics)
      1. OwnerShip벤다이어그램으로 소유권 이해
    4. Closures클로져DeepDive
    5. 다른언어에서 러스트로 온 좋은 기능들..
      1. (rust)const fn/(C++)constexpr
    6. Operator
      1. C_Operator_Precedence
      2. Logical_Operators
      3. Bitwise_Operators
    7. Rust Lifetime개념 깊게deep dive
    8. Algorithm알고리즘
    9. Rust_FFI
      1. C언어_Rust_FFI
    10. Rust(ComputerSystem,CS)
      1. Dive into Systems Print Version, August 2022
        1. By the C, by the C, by the Beatutiful C
      2. IntegerDisplay정수표시(CS)
    11. rust_release
      1. rust_1_85_Rust Edition 2024
        1. Language
          1. RPIT lifetime capture rules
          2. if let temporary scope
          3. Tail expression temporary scope
          4. Match ergonomics
          5. Unsafe extern blocks
          6. Unsafe attributes
          7. unsafe_op_in_unsafe_fn warning
          8. Disallow references to static mut
          9. Never type fallback change
          10. Macro fragment specifiers
          11. Missing macro fragment specifiers
          12. gen keyword
          13. Reserved syntax
        2. Standard library
          1. Additions to the prelude
          2. Add IntoIterator for Box<[T]>
          3. Newly unsafe functions
        3. Cargo
          1. Cargo: Rust-version aware resolver
          2. Cargo: Table and key name consistency
          3. Cargo: Reject unused inherited default-features
        4. Rustdoc
          1. Rustdoc combined tests
          2. Rustdoc nested include! change
        5. Rustfmt
          1. Rustfmt: Style edition
          2. Rustfmt: Assignment operator RHS indentation
          3. Rustfmt: Combine all delimited exprs as last argument
          4. Rustfmt: Single-line where clauses
          5. Rustfmt: Raw identifier sorting
          6. Rustfmt: Version sorting
      2. rust_1_83
      3. rust_1_56_Rust Edition 2021
        1. Additions to the prelude
        2. Default Cargo feature resolver
        3. IntoIterator for arrays
        4. Disjoint capture in closures
        5. Panic macro consistency
        6. Reserved syntax
        7. Raw lifetimes
        8. Warnings promoted to errors
        9. Or patterns in macro-rules
        10. C-string literals
      4. rust_1_31_Rust Edition 2018
        1. Path and module system changes
        2. Anonymous trait function parameters deprecated
        3. New keywords
        4. Method dispatch for raw pointers to inference variables
        5. Cargo changes
      5. rust_1_00_Rust Edition 2015
    12. rust_rfcs_nightly
  9. Rust(Parallelism&Concurrency)
  10. Rust Parallelism&Concurrency
  11. Optimization최적화
  12. Rust Optimization최적화
    1. 모든 언어별 공통적인 최적화 개념
    2. Rust Compiler이해LLVM_컴파일과정
    3. Rust Optimization
      1. Vector를 array로 변환
  13. 문제해결Rust코드로 해결하기
  14. 문제해결Rust코드로 해결
    1. 정렬(Sort)
    2. 검색(Search)
    3. 문자열 패턴 매칭(SPM: String Pattern Matching)
      1. csv문서에서 내가 원하는정보 뽑아내기
    4. 계산(Calculation)
      1. x^3계산
      2. 짝수만 계산&받은 데이터롤 모두 더하기(+)
  15. Rust 화이트 해커(Hacking)
  16. BlackHatRust유료(영어원서)
  17. Rust OS(Operating System)
  18. Rust OS
  19. Rust Embedded
  20. Rust Embedded
  21. Rust Assembly(x86_64)
  22. Rust Assembly(Arm)