Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yorkie/rust-convert

convienient api for type converting for Rust
https://github.com/yorkie/rust-convert

Last synced: 5 days ago
JSON representation

convienient api for type converting for Rust

Awesome Lists containing this project

README

        

rust-convert
================
convienient api for type converting for Rust

### Installation

by `Cargo.toml`:
```toml
[dependencies.convert]
git = "https://github.com/yorkie/rust-convert"
```

### Usage
```rs
extern crate convert;
extern crate collection;
use collection::String;

let raw: String = String::from_str("foobar");
let str: &str = convert::str_to_string(&raw).unwrap();
```

### License

MIT