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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-18T15:41:17.000Z (almost 11 years ago)
- Last Synced: 2024-12-31T16:19:15.800Z (6 months ago)
- Language: Rust
- Size: 152 KB
- Stars: 0
- Watchers: 3
- 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