pub struct InlineValueText {
pub range: Range,
pub text: String,
}Expand description
Returns inline value information as the complete text to be shown.
@since 3.17.0
Fields§
§range: RangeThe document range for which the inline value applies.
text: StringThe 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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'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 PartialEq for InlineValueText
impl PartialEq for InlineValueText
Source§fn eq(&self, other: &InlineValueText) -> bool
fn eq(&self, other: &InlineValueText) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InlineValueText
impl Serialize 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 UnsafeUnpin 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