pub enum QueryResultV2Json {
ExpressionSemantics {
file_path: String,
query_id: String,
payload: ExpressionSemanticsPayloadV2Json,
},
SourceExpressionResolution {
file_path: String,
query_id: String,
payload: SourceExpressionResolutionPayloadV2Json,
},
SelectorUsage {
file_path: String,
query_id: String,
payload: SelectorUsagePayloadV2Json,
},
}Variants§
Trait Implementations§
Source§impl Clone for QueryResultV2Json
impl Clone for QueryResultV2Json
Source§fn clone(&self) -> QueryResultV2Json
fn clone(&self) -> QueryResultV2Json
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 QueryResultV2Json
impl Debug for QueryResultV2Json
Source§impl<'de> Deserialize<'de> for QueryResultV2Json
impl<'de> Deserialize<'de> for QueryResultV2Json
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 QueryResultV2Json
impl PartialEq for QueryResultV2Json
Source§impl Serialize for QueryResultV2Json
impl Serialize for QueryResultV2Json
impl StructuralPartialEq for QueryResultV2Json
Auto Trait Implementations§
impl Freeze for QueryResultV2Json
impl RefUnwindSafe for QueryResultV2Json
impl Send for QueryResultV2Json
impl Sync for QueryResultV2Json
impl Unpin for QueryResultV2Json
impl UnsafeUnpin for QueryResultV2Json
impl UnwindSafe for QueryResultV2Json
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