Struct partiql_logical::ProjectValue
source · pub struct ProjectValue {
pub expr: ValueExpr,
}Expand description
Represents a value projection (SELECT VALUE) e.g. SELECT VALUE t.a * 2 in
SELECT VALUE t.a * 2 IN tbl AS t.
Fields§
§expr: ValueExprTrait Implementations§
source§impl Clone for ProjectValue
impl Clone for ProjectValue
source§fn clone(&self) -> ProjectValue
fn clone(&self) -> ProjectValue
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 ProjectValue
impl Debug for ProjectValue
source§impl PartialEq<ProjectValue> for ProjectValue
impl PartialEq<ProjectValue> for ProjectValue
source§fn eq(&self, other: &ProjectValue) -> bool
fn eq(&self, other: &ProjectValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.