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: ValueExpr
Trait 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 ==
.impl Eq for ProjectValue
impl StructuralEq for ProjectValue
impl StructuralPartialEq for ProjectValue
Auto Trait Implementations§
impl RefUnwindSafe for ProjectValue
impl Send for ProjectValue
impl Sync for ProjectValue
impl Unpin for ProjectValue
impl UnwindSafe for ProjectValue
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