pub struct Tuple {
pub schema: SchemaRef,
pub data: Vec<ScalarValue>,
}Fields§
§schema: SchemaRef§data: Vec<ScalarValue>Implementations§
Source§impl Tuple
impl Tuple
pub fn new(schema: SchemaRef, data: Vec<ScalarValue>) -> Self
pub fn project_with_schema( &self, projected_schema: SchemaRef, ) -> QuillSQLResult<Self>
pub fn empty(schema: SchemaRef) -> Self
pub fn try_merge(tuples: impl IntoIterator<Item = Self>) -> QuillSQLResult<Self>
pub fn is_null(&self) -> bool
pub fn value(&self, index: usize) -> QuillSQLResult<&ScalarValue>
pub fn value_by_name( &self, relation: Option<&TableReference>, name: &str, ) -> QuillSQLResult<&ScalarValue>
pub fn as_rid(&self) -> QuillSQLResult<RecordId>
Trait Implementations§
Source§impl Ord for Tuple
impl Ord for Tuple
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Tuple
impl PartialOrd for Tuple
impl Eq for Tuple
impl StructuralPartialEq for Tuple
Auto Trait Implementations§
impl Freeze for Tuple
impl RefUnwindSafe for Tuple
impl Send for Tuple
impl Sync for Tuple
impl Unpin for Tuple
impl UnsafeUnpin for Tuple
impl UnwindSafe for Tuple
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§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.