Skip to main content

ShortcutOptions

Struct ShortcutOptions 

Source
pub struct ShortcutOptions {
    pub arguments: Vec<OsString>,
    pub working_directory: Option<PathBuf>,
    pub icon: Option<ShortcutIcon>,
    pub description: Option<String>,
}
Expand description

Options used when creating a Windows .lnk shortcut.

§Examples

let options = win_desktop_utils::ShortcutOptions::new()
    .argument("--safe-mode")
    .working_directory(r"C:\Windows")
    .icon(r"C:\Windows\notepad.exe", 0)
    .description("Open a tool");

assert_eq!(options.arguments.len(), 1);
assert!(options.working_directory.is_some());
assert!(options.icon.is_some());
assert_eq!(options.description.as_deref(), Some("Open a tool"));

Fields§

§arguments: Vec<OsString>

Command-line arguments stored in the shortcut.

§working_directory: Option<PathBuf>

Optional working directory for the shortcut target.

§icon: Option<ShortcutIcon>

Optional icon resource for the shortcut.

§description: Option<String>

Optional user-facing shortcut description.

Implementations§

Source§

impl ShortcutOptions

Source

pub fn new() -> Self

Creates options with no arguments, working directory, icon, or description.

Examples found in repository?
examples/shortcuts.rs (line 6)
1fn main() -> Result<(), Box<dyn std::error::Error>> {
2    let cwd = std::env::current_dir()?;
3    let notepad = r"C:\Windows\notepad.exe";
4
5    let lnk_path = cwd.join("notepad-demo.lnk");
6    let options = win_desktop_utils::ShortcutOptions::new()
7        .description("Open Notepad")
8        .working_directory(r"C:\Windows")
9        .icon(notepad, 0);
10
11    win_desktop_utils::create_shortcut(&lnk_path, notepad, &options)?;
12    println!("created shortcut: {}", lnk_path.display());
13
14    let url_path = cwd.join("rust-docs.url");
15    win_desktop_utils::create_url_shortcut(&url_path, "https://doc.rust-lang.org/std/")?;
16    println!("created URL shortcut: {}", url_path.display());
17
18    Ok(())
19}
Source

pub fn arguments<I, S>(self, arguments: I) -> Self
where I: IntoIterator<Item = S>, S: Into<OsString>,

Replaces the command-line arguments stored in the shortcut.

Source

pub fn argument(self, argument: impl Into<OsString>) -> Self

Appends one command-line argument stored in the shortcut.

Source

pub fn working_directory(self, path: impl Into<PathBuf>) -> Self

Sets the working directory used when the shortcut target starts.

Examples found in repository?
examples/shortcuts.rs (line 8)
1fn main() -> Result<(), Box<dyn std::error::Error>> {
2    let cwd = std::env::current_dir()?;
3    let notepad = r"C:\Windows\notepad.exe";
4
5    let lnk_path = cwd.join("notepad-demo.lnk");
6    let options = win_desktop_utils::ShortcutOptions::new()
7        .description("Open Notepad")
8        .working_directory(r"C:\Windows")
9        .icon(notepad, 0);
10
11    win_desktop_utils::create_shortcut(&lnk_path, notepad, &options)?;
12    println!("created shortcut: {}", lnk_path.display());
13
14    let url_path = cwd.join("rust-docs.url");
15    win_desktop_utils::create_url_shortcut(&url_path, "https://doc.rust-lang.org/std/")?;
16    println!("created URL shortcut: {}", url_path.display());
17
18    Ok(())
19}
Source

pub fn icon(self, path: impl Into<PathBuf>, index: i32) -> Self

Sets the icon resource used by Explorer for the shortcut.

Examples found in repository?
examples/shortcuts.rs (line 9)
1fn main() -> Result<(), Box<dyn std::error::Error>> {
2    let cwd = std::env::current_dir()?;
3    let notepad = r"C:\Windows\notepad.exe";
4
5    let lnk_path = cwd.join("notepad-demo.lnk");
6    let options = win_desktop_utils::ShortcutOptions::new()
7        .description("Open Notepad")
8        .working_directory(r"C:\Windows")
9        .icon(notepad, 0);
10
11    win_desktop_utils::create_shortcut(&lnk_path, notepad, &options)?;
12    println!("created shortcut: {}", lnk_path.display());
13
14    let url_path = cwd.join("rust-docs.url");
15    win_desktop_utils::create_url_shortcut(&url_path, "https://doc.rust-lang.org/std/")?;
16    println!("created URL shortcut: {}", url_path.display());
17
18    Ok(())
19}
Source

pub fn description(self, description: impl Into<String>) -> Self

Sets the shortcut description shown by Explorer.

Examples found in repository?
examples/shortcuts.rs (line 7)
1fn main() -> Result<(), Box<dyn std::error::Error>> {
2    let cwd = std::env::current_dir()?;
3    let notepad = r"C:\Windows\notepad.exe";
4
5    let lnk_path = cwd.join("notepad-demo.lnk");
6    let options = win_desktop_utils::ShortcutOptions::new()
7        .description("Open Notepad")
8        .working_directory(r"C:\Windows")
9        .icon(notepad, 0);
10
11    win_desktop_utils::create_shortcut(&lnk_path, notepad, &options)?;
12    println!("created shortcut: {}", lnk_path.display());
13
14    let url_path = cwd.join("rust-docs.url");
15    win_desktop_utils::create_url_shortcut(&url_path, "https://doc.rust-lang.org/std/")?;
16    println!("created URL shortcut: {}", url_path.display());
17
18    Ok(())
19}

Trait Implementations§

Source§

impl Clone for ShortcutOptions

Source§

fn clone(&self) -> ShortcutOptions

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ShortcutOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ShortcutOptions

Source§

fn default() -> ShortcutOptions

Returns the “default value” for a type. Read more
Source§

impl PartialEq for ShortcutOptions

Source§

fn eq(&self, other: &ShortcutOptions) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for ShortcutOptions

Source§

impl StructuralPartialEq for ShortcutOptions

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.