Algorithms | Apple | AssemblyLanguage | BASH | Bash Cookbook | C-Programmming | CommonLisp | Computer Security | CuisSmalltalk | Databases | Emacs | Exploitation | Firewalls | Fortran | Functional Programming | Git | GNUSmalltalk | Haskell | Javascript | Julia | Linux | Machine Learning | Metasploit |Machine Learning | Networking | Operating Systems | Open Data Science | Odin | Picolisp | Pharo Smalltalk | Purescript | Python | Racket | Rust| Scheme | Social Engineering | Unity | vim | V | Web Development | Windows |Zig

Rust

  • Scalar Types
  • Signed integers:   i8, i16, i32, i64, i128 and isize (pointer size)
    Unsigned integers: u8, u16, u32, u64, u128 and usize (pointer size)
    Floating point:    f32, f64
    char               Unicode scalar values like 'a', 'α' and '∞' (4 bytes each)
    bool               either true or false
    
  • The unit type (), whose only possible value is an empty tuple: ()
  • Compound Types
  • Arrays like [1, 2, 3]
    Tuples like (1, true)
    

    External Links

    http:///wiki/?rust

    19may23   admin