https://github.com/yorkie/rust-convert
  
  
    convienient api for type converting for Rust 
    https://github.com/yorkie/rust-convert
  
        Last synced: 4 months ago 
        JSON representation
    
convienient api for type converting for Rust
- Host: GitHub
 - URL: https://github.com/yorkie/rust-convert
 - Owner: yorkie
 - Created: 2014-07-08T14:57:39.000Z (over 11 years ago)
 - Default Branch: master
 - Last Pushed: 2014-07-18T15:41:17.000Z (over 11 years ago)
 - Last Synced: 2025-06-01T08:22:06.960Z (5 months ago)
 - Language: Rust
 - Size: 152 KB
 - Stars: 0
 - Watchers: 2
 - Forks: 0
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 
 
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