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 identifier 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§impl Serialize for DeleteFileOptions
impl Serialize for DeleteFileOptions
impl Eq for DeleteFileOptions
impl StructuralPartialEq for DeleteFileOptions
Auto Trait Implementations§
impl Freeze for DeleteFileOptions
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.