as_string 0.1.0

Convert a &str to a String
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 12.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 981.56 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • fgclue

as_string

Turns a &str into a String:

use as_string;

fn main() {
    return as_string("Hello, World")
}