Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yorkie/rust-convert
- Owner: yorkie
- Created: 2014-07-08T14:57:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-18T15:41:17.000Z (over 10 years ago)
- Last Synced: 2024-10-19T19:36:13.491Z (24 days 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