Expand description
§Scoop Shims
§Usage
use scoop_shim::Shim;
// Serialize a shim
let shim = Shim::new(
std::path::PathBuf::from("sfsu.exe"),
vec!["search".to_string()],
);
shim.to_string(); // "path = \"sfsu.exe\"\r\nargs = search"
// Deserialize a shim
let shim = scoop_shim::from_str("path = \"sfsu.exe\"\r\nargs = search").unwrap();
assert_eq!(shim.path(), std::path::PathBuf::from("sfsu.exe"));
assert_eq!(shim.args(), ["search".to_string()]);
Made with 💗 by Juliette Cordor
Structs§
- Shim
- Scoop shim struct
Enums§
- Error
- Errors that can occur when parsing or serializing a shim.