Rust – Collections

  • Post author:
  • Post category:Rust
  • Post comments:1 Comment

Rust Collections standard collection library provides efficient implementations of the most common general-purpose programming data structures. This chapter discusses the implementation of the commonly used collections − Vector, HashMap, and…

Continue ReadingRust – Collections

Rust – Enums

  • Post author:
  • Post category:Rust
  • Post comments:2 Comments

In Rust Enums programming, when we have to select a value from a list of possible variants we use enumeration data types. An enumerated type is declared using the enum keyword. syntax…

Continue ReadingRust – Enums