docs.rs failed to build lnks-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
lnks-0.2.0
lnks
lnks provides a high-level API for reading and writing Windows .lnk (Shell Link) files.
It wraps the COM-based Shell APIs IShellLinkW and IPersistFile, including support for reading and toggling the undocumented "Run as administrator" flag.
Examples
Load an existing shortcut
let path = new;
let shortcut = load.unwrap;
Create and save a new shortcut to Notepad
let mut shortcut = new;
shortcut.arguments = Some;
let out = new;
shortcut.save.unwrap;
License
Licensed under the MIT license (LICENSE or http://opensource.org/licenses/MIT)