Struct lsp_types::InlineValueText
source · pub struct InlineValueText {
pub range: Range,
pub text: String,
}
Expand description
Provide inline value as text.
@since 3.17.0
Fields§
§range: Range
The document range for which the inline value applies.
text: String
The text of the inline value.
Trait Implementations§
source§impl Clone for InlineValueText
impl Clone for InlineValueText
source§fn clone(&self) -> InlineValueText
fn clone(&self) -> InlineValueText
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 InlineValueText
impl Debug for InlineValueText
source§impl Default for InlineValueText
impl Default for InlineValueText
source§fn default() -> InlineValueText
fn default() -> InlineValueText
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InlineValueText
impl<'de> Deserialize<'de> for InlineValueText
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 From<InlineValueText> for InlineValue
impl From<InlineValueText> for InlineValue
source§fn from(from: InlineValueText) -> Self
fn from(from: InlineValueText) -> Self
Converts to this type from the input type.
source§impl PartialEq for InlineValueText
impl PartialEq for InlineValueText
source§fn eq(&self, other: &InlineValueText) -> bool
fn eq(&self, other: &InlineValueText) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for InlineValueText
impl Serialize for InlineValueText
impl Eq for InlineValueText
impl StructuralPartialEq for InlineValueText
Auto Trait Implementations§
impl Freeze for InlineValueText
impl RefUnwindSafe for InlineValueText
impl Send for InlineValueText
impl Sync for InlineValueText
impl Unpin for InlineValueText
impl UnwindSafe for InlineValueText
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