c314-utils

Small Rust utilities

Usage

Add the following to the [dependencies] section of your Cargo.toml file.

toml c314-utils = "0.1.2"

Now you can use it like this:

```rust use c314-utils::prelude::ToStr;

fn main() { let convertedfromstringtostr = String::from("Hello World1").tostr(); println!("{}", convertedfromstringto_str); } ```

Currently only contains ToStr, if you have any ideas, please create an issue at github.com/314ShadePi/c314-utils

I created this library to make Yew do as I wanted