pub struct RelTuple {
pub data: BTreeMap<String, Scalar>,
}Fields§
§data: BTreeMap<String, Scalar>Implementations§
Trait Implementations§
Source§impl Ord for RelTuple
impl Ord for RelTuple
Source§impl PartialOrd for RelTuple
impl PartialOrd for RelTuple
Source§impl Rel for RelTuple
impl Rel for RelTuple
fn type_name(&self) -> &str
fn kind(&self) -> DataType
fn schema(&self) -> Schema
fn len(&self) -> usize
fn cols(&self) -> usize
fn rows(&self) -> Option<usize>
fn as_any(&self) -> &dyn Any
fn rel_shape(&self) -> RelShape
fn rel_hash(&self, hasher: &mut dyn Hasher)
fn rel_eq(&self, other: &dyn Rel) -> bool
fn rel_cmp(&self, other: &dyn Rel) -> Ordering
fn is_empty(&self) -> bool
fn is_scalar(&self) -> bool
fn query(&self) -> QueryOp
impl Eq for RelTuple
impl StructuralPartialEq for RelTuple
Auto Trait Implementations§
impl Freeze for RelTuple
impl !RefUnwindSafe for RelTuple
impl !Send for RelTuple
impl !Sync for RelTuple
impl Unpin for RelTuple
impl UnsafeUnpin for RelTuple
impl !UnwindSafe for RelTuple
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> 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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more