pub struct EmptyRelation {
    pub produce_one_row: bool,
    pub schema: DFSchemaRef,
}Expand description
Relationship produces 0 or 1 placeholder rows with specified output schema
In most cases the output schema for EmptyRelation would be empty,
however, it can be non-empty typically for optimizer rules
Fields§
§produce_one_row: boolWhether to produce a placeholder row
schema: DFSchemaRefThe schema description of the output
Trait Implementations§
Source§impl Clone for EmptyRelation
 
impl Clone for EmptyRelation
Source§fn clone(&self) -> EmptyRelation
 
fn clone(&self) -> EmptyRelation
Returns a duplicate 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 EmptyRelation
 
impl Debug for EmptyRelation
Source§impl Hash for EmptyRelation
 
impl Hash for EmptyRelation
Source§impl PartialEq for EmptyRelation
 
impl PartialEq for EmptyRelation
Source§impl PartialOrd for EmptyRelation
 
impl PartialOrd for EmptyRelation
impl Eq for EmptyRelation
impl StructuralPartialEq for EmptyRelation
Auto Trait Implementations§
impl Freeze for EmptyRelation
impl RefUnwindSafe for EmptyRelation
impl Send for EmptyRelation
impl Sync for EmptyRelation
impl Unpin for EmptyRelation
impl UnwindSafe for EmptyRelation
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§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<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
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