pub struct InlineValueText {
pub line: i64,
pub column: i64,
pub text: String,
}Expand description
Inline value hint for a single variable
Fields§
§line: i64Line number (1-based)
column: i64Column number (1-based)
text: StringRendered inline value text
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
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