Struct languageserver_types::RenameFileOptions[][src]

pub struct RenameFileOptions {
    pub overwrite: Option<bool>,
    pub ignore_if_exists: Option<bool>,
}

Rename file options

Fields

Overwrite target if existing. Overwrite wins over ignoreIfExists

Ignores if target exists.

Trait Implementations

impl Debug for RenameFileOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for RenameFileOptions
[src]

impl PartialEq for RenameFileOptions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for RenameFileOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations