Struct lsp_types::DeleteFileOptions
source · pub struct DeleteFileOptions {
pub recursive: Option<bool>,
pub ignore_if_not_exists: Option<bool>,
pub annotation_id: Option<ChangeAnnotationIdentifier>,
}
Expand description
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.
annotation_id: Option<ChangeAnnotationIdentifier>
An optional annotation identifer describing the operation.
@since 3.16.0
Trait Implementations§
source§impl Clone for DeleteFileOptions
impl Clone for DeleteFileOptions
source§fn clone(&self) -> DeleteFileOptions
fn clone(&self) -> DeleteFileOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DeleteFileOptions
impl Debug for DeleteFileOptions
source§impl<'de> Deserialize<'de> for DeleteFileOptions
impl<'de> Deserialize<'de> for DeleteFileOptions
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for DeleteFileOptions
impl PartialEq for DeleteFileOptions
source§fn eq(&self, other: &DeleteFileOptions) -> bool
fn eq(&self, other: &DeleteFileOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DeleteFileOptions
impl Serialize for DeleteFileOptions
impl Eq for DeleteFileOptions
impl StructuralEq for DeleteFileOptions
impl StructuralPartialEq for DeleteFileOptions
Auto Trait Implementations§
impl RefUnwindSafe for DeleteFileOptions
impl Send for DeleteFileOptions
impl Sync for DeleteFileOptions
impl Unpin for DeleteFileOptions
impl UnwindSafe for DeleteFileOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.