Struct lsp_types::AnnotatedTextEdit
source · [−]pub struct AnnotatedTextEdit {
pub text_edit: TextEdit,
pub annotation_id: ChangeAnnotationIdentifier,
}
Expand description
A special text edit with an additional change annotation.
@since 3.16.0.
Fields
text_edit: TextEdit
annotation_id: ChangeAnnotationIdentifier
The actual annotation
Trait Implementations
sourceimpl Clone for AnnotatedTextEdit
impl Clone for AnnotatedTextEdit
sourcefn clone(&self) -> AnnotatedTextEdit
fn clone(&self) -> AnnotatedTextEdit
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AnnotatedTextEdit
impl Debug for AnnotatedTextEdit
sourceimpl<'de> Deserialize<'de> for AnnotatedTextEdit
impl<'de> Deserialize<'de> for AnnotatedTextEdit
sourcefn 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
sourceimpl PartialEq<AnnotatedTextEdit> for AnnotatedTextEdit
impl PartialEq<AnnotatedTextEdit> for AnnotatedTextEdit
sourcefn eq(&self, other: &AnnotatedTextEdit) -> bool
fn eq(&self, other: &AnnotatedTextEdit) -> bool
sourceimpl Serialize for AnnotatedTextEdit
impl Serialize for AnnotatedTextEdit
impl Eq for AnnotatedTextEdit
impl StructuralEq for AnnotatedTextEdit
impl StructuralPartialEq for AnnotatedTextEdit
Auto Trait Implementations
impl RefUnwindSafe for AnnotatedTextEdit
impl Send for AnnotatedTextEdit
impl Sync for AnnotatedTextEdit
impl Unpin for AnnotatedTextEdit
impl UnwindSafe for AnnotatedTextEdit
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more