Struct languageserver_types::CreateFileOptions[][src]

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

Options to create a file.

Fields

Overwrite existing file. Overwrite wins over ignoreIfExists

Ignore if exists.

Trait Implementations

impl Debug for CreateFileOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for CreateFileOptions
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations