TypeScript-Rust-Compiler 0.4.0

High-performance TypeScript to Rust compiler
Documentation
1
2
3
4
5
6
7
8
9
10
use std::collections::HashMap;


pub trait Container<T> {
    fn get_value(&self) -> T;
    fn set_value(&mut self, value: T);
    fn getValue(&self, ) -> T;
}