Struct languageserver_types::DeleteFileOptions [−][src]
pub struct DeleteFileOptions {
pub recursive: Option<bool>,
pub ignore_if_not_exists: Option<bool>,
}Delete file options
Fields
recursive: Option<bool>
Delete the content recursively if a folder is denoted.
ignore_if_not_exists: Option<bool>
Ignore the operation if the file doesn't exist.
Trait Implementations
impl Debug for DeleteFileOptions[src]
impl Debug for DeleteFileOptionsfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for DeleteFileOptions[src]
impl Eq for DeleteFileOptionsimpl PartialEq for DeleteFileOptions[src]
impl PartialEq for DeleteFileOptionsfn eq(&self, other: &DeleteFileOptions) -> bool[src]
fn eq(&self, other: &DeleteFileOptions) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DeleteFileOptions) -> bool[src]
fn ne(&self, other: &DeleteFileOptions) -> boolThis method tests for !=.
impl Clone for DeleteFileOptions[src]
impl Clone for DeleteFileOptionsfn clone(&self) -> DeleteFileOptions[src]
fn clone(&self) -> DeleteFileOptionsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for DeleteFileOptions
impl Send for DeleteFileOptionsimpl Sync for DeleteFileOptions
impl Sync for DeleteFileOptions