Struct lsp_types::TextDocumentSaveReason
source · pub struct TextDocumentSaveReason(/* private fields */);
Expand description
Represents reasons why a text document is saved.
Implementations§
source§impl TextDocumentSaveReason
impl TextDocumentSaveReason
sourcepub const MANUAL: TextDocumentSaveReason = _
pub const MANUAL: TextDocumentSaveReason = _
Manually triggered, e.g. by the user pressing save, by starting debugging, or by an API call.
sourcepub const AFTER_DELAY: TextDocumentSaveReason = _
pub const AFTER_DELAY: TextDocumentSaveReason = _
Automatic after a delay.
sourcepub const FOCUS_OUT: TextDocumentSaveReason = _
pub const FOCUS_OUT: TextDocumentSaveReason = _
When the editor lost focus.
Trait Implementations§
source§impl Clone for TextDocumentSaveReason
impl Clone for TextDocumentSaveReason
source§fn clone(&self) -> TextDocumentSaveReason
fn clone(&self) -> TextDocumentSaveReason
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 TextDocumentSaveReason
impl Debug for TextDocumentSaveReason
source§impl<'de> Deserialize<'de> for TextDocumentSaveReason
impl<'de> Deserialize<'de> for TextDocumentSaveReason
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 TextDocumentSaveReason
impl PartialEq for TextDocumentSaveReason
source§impl Serialize for TextDocumentSaveReason
impl Serialize for TextDocumentSaveReason
source§impl TryFrom<&str> for TextDocumentSaveReason
impl TryFrom<&str> for TextDocumentSaveReason
impl Copy for TextDocumentSaveReason
impl Eq for TextDocumentSaveReason
impl StructuralPartialEq for TextDocumentSaveReason
Auto Trait Implementations§
impl Freeze for TextDocumentSaveReason
impl RefUnwindSafe for TextDocumentSaveReason
impl Send for TextDocumentSaveReason
impl Sync for TextDocumentSaveReason
impl Unpin for TextDocumentSaveReason
impl UnwindSafe for TextDocumentSaveReason
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<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.