Struct languageserver_types::DeleteFileOptions[][src]

pub struct DeleteFileOptions {
    pub recursive: Option<bool>,
    pub ignore_if_not_exists: Option<bool>,
}

Delete file options

Fields

Delete the content recursively if a folder is denoted.

Ignore the operation if the file doesn't exist.

Trait Implementations

impl Debug for DeleteFileOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for DeleteFileOptions
[src]

impl PartialEq for DeleteFileOptions
[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 DeleteFileOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations