pathdiv 0.1.0

This library provides an API similar to pathlib of python.
Documentation
  • Coverage
  • 25%
    3 out of 12 items documented3 out of 11 items with examples
  • Size
  • Source code size: 12.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.44 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • suzusuzu/pathdiv
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • suzusuzu

pathdiv

Rust

This library provides an API similar to pathlib of python. "/" can be used to join the path. PathDiv is a wrapper for PathBuf.

Example

use pathdiv::PathDiv;

let mut path = PathDiv::from("/etc");
path = path / "init.d";
path /= "ssh";
println!("{}", path); // "/etc/init.d/ssh"