pub enum CardinalityEffect {
Unknown,
Equal,
LowerEqual,
GreaterEqual,
}
Expand description
Indicates the effect an execution plan operator will have on the cardinality of its input stream
Variants§
Unknown
Unknown effect. This is the default
Equal
The operator is guaranteed to produce exactly one row for each input row
LowerEqual
The operator may produce fewer output rows than it receives input rows
GreaterEqual
The operator may produce more output rows than it receives input rows
Auto Trait Implementations§
impl Freeze for CardinalityEffect
impl RefUnwindSafe for CardinalityEffect
impl Send for CardinalityEffect
impl Sync for CardinalityEffect
impl Unpin for CardinalityEffect
impl UnwindSafe for CardinalityEffect
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> 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