Struct datafusion_expr::logical_plan::Values
source · pub struct Values {
pub schema: DFSchemaRef,
pub values: Vec<Vec<Expr>>,
}
Expand description
Values expression. See Postgres VALUES documentation for more details.
Fields§
§schema: DFSchemaRef
The table schema
values: Vec<Vec<Expr>>
Values
Trait Implementations§
source§impl PartialEq<Values> for Values
impl PartialEq<Values> for Values
impl Eq for Values
impl StructuralEq for Values
impl StructuralPartialEq for Values
Auto Trait Implementations§
impl !RefUnwindSafe for Values
impl Send for Values
impl Sync for Values
impl Unpin for Values
impl !UnwindSafe for Values
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.