pub struct InlineValueEvaluatableExpression {
pub range: Range,
pub expression: Option<String>,
}
Expand description
Provide an inline value through an expression evaluation.
If only a range is specified, the expression will be extracted from the underlying document.
An optional expression can be used to override the extracted expression.
@since 3.17.0
Fields§
§range: Range
The document range for which the inline value applies. The range is used to extract the evaluatable expression from the underlying document.
expression: Option<String>
If specified the expression overrides the extracted expression.
Trait Implementations§
source§impl Clone for InlineValueEvaluatableExpression
impl Clone for InlineValueEvaluatableExpression
source§fn clone(&self) -> InlineValueEvaluatableExpression
fn clone(&self) -> InlineValueEvaluatableExpression
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 Default for InlineValueEvaluatableExpression
impl Default for InlineValueEvaluatableExpression
source§fn default() -> InlineValueEvaluatableExpression
fn default() -> InlineValueEvaluatableExpression
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InlineValueEvaluatableExpression
impl<'de> Deserialize<'de> for InlineValueEvaluatableExpression
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<InlineValueEvaluatableExpression> for InlineValue
impl From<InlineValueEvaluatableExpression> for InlineValue
source§fn from(from: InlineValueEvaluatableExpression) -> Self
fn from(from: InlineValueEvaluatableExpression) -> Self
Converts to this type from the input type.
source§impl PartialEq for InlineValueEvaluatableExpression
impl PartialEq for InlineValueEvaluatableExpression
source§fn eq(&self, other: &InlineValueEvaluatableExpression) -> bool
fn eq(&self, other: &InlineValueEvaluatableExpression) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for InlineValueEvaluatableExpression
impl StructuralPartialEq for InlineValueEvaluatableExpression
Auto Trait Implementations§
impl Freeze for InlineValueEvaluatableExpression
impl RefUnwindSafe for InlineValueEvaluatableExpression
impl Send for InlineValueEvaluatableExpression
impl Sync for InlineValueEvaluatableExpression
impl Unpin for InlineValueEvaluatableExpression
impl UnwindSafe for InlineValueEvaluatableExpression
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<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.