Category:Rust: Difference between revisions

From Rosetta Code
Content added Content deleted
(padded the Rust page a bit)
No edit summary
Line 12: Line 12:
}}
}}


Rust is a work-in-progress general purpose, multi-paradigm, systems programming language sponsored by Mozilla. Its goal is to provide a fast, practical, concurrent language with zero-cost abstractions and strong memory safety. It employs a unique model of ownership to eliminate data races.
Rust is a general purpose, multi-paradigm, systems programming language sponsored by Mozilla. Its goal is to provide a fast, practical, concurrent language with zero-cost abstractions and strong memory safety. It employs a unique model of ownership to eliminate data races.


== Features ==
== Features ==
From the official website:
From the official website:
* algebraic data types
* apattern matching
* closures
* type inference
* zero-cost abstractions
* zero-cost abstractions
* move semantics
* guaranteed memory safety
* guaranteed memory safety
* threads without data races
* optional garbage collection
* trait-based generics
* concurrency without data races
* pattern matching
* type inference
* minimal runtime
* minimal runtime
* efficient C bindings
* efficient C bindings

Revision as of 11:16, 11 October 2015

Language
Rust
This programming language may be used to instruct a computer to perform a task.
Official website
Execution method: Compiled (machine code)
Garbage collected: Allowed
Type safety: Safe
Type strength: Strong
Type compatibility: Structural
Type expression: Implicit
Type checking: Static
Lang tag(s): rust
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Rust.

Rust is a general purpose, multi-paradigm, systems programming language sponsored by Mozilla. Its goal is to provide a fast, practical, concurrent language with zero-cost abstractions and strong memory safety. It employs a unique model of ownership to eliminate data races.

Features

From the official website:

  • zero-cost abstractions
  • move semantics
  • guaranteed memory safety
  • threads without data races
  • trait-based generics
  • pattern matching
  • type inference
  • minimal runtime
  • efficient C bindings

Subcategories

This category has the following 2 subcategories, out of 2 total.

@

Pages in category "Rust"

The following 200 pages are in this category, out of 952 total.

(previous page) (next page)

A

C

(previous page) (next page)