rust-string-random 0.1.0

easy to use random string generator
Documentation
  • Coverage
  • 8.33%
    1 out of 12 items documented1 out of 3 items with examples
  • Size
  • Source code size: 7.44 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.59 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 19s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • wslongchen/rust-string-random
    1 1 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • wslongchen

rust-string-random

easy to use random-string on rust

Install

Can be installed with:

    $ cargo build

Usage

  use rust_string_random::{random, Options, RandWay};
  let options = Options {
            rand: RandWay::NORMAL,
            numbers: None,
            letters: None,
            specials: None
        };
  let res = random(5,options);
  let string = res.unwrap();

Developing

To setup the development envrionment run cargo run.

Contributers

MrPan <1049058427@qq.com>