pub struct AggregateExprPlan {
pub func: AggregateFunctionPlan,
pub distinct: bool,
pub slot: Option<usize>,
}Fields§
§func: AggregateFunctionPlan§distinct: bool§slot: Option<usize>Implementations§
Trait Implementations§
Source§impl Clone for AggregateExprPlan
impl Clone for AggregateExprPlan
Source§fn clone(&self) -> AggregateExprPlan
fn clone(&self) -> AggregateExprPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AggregateExprPlan
impl Debug for AggregateExprPlan
Source§impl<'de> Deserialize<'de> for AggregateExprPlan
impl<'de> Deserialize<'de> for AggregateExprPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AggregateExprPlan
Source§impl From<Aggregate> for AggregateExprPlan
impl From<Aggregate> for AggregateExprPlan
Source§impl Hash for AggregateExprPlan
impl Hash for AggregateExprPlan
Source§impl PartialEq for AggregateExprPlan
impl PartialEq for AggregateExprPlan
Source§impl Serialize for AggregateExprPlan
impl Serialize for AggregateExprPlan
impl StructuralPartialEq for AggregateExprPlan
Auto Trait Implementations§
impl Freeze for AggregateExprPlan
impl RefUnwindSafe for AggregateExprPlan
impl Send for AggregateExprPlan
impl Sync for AggregateExprPlan
impl Unpin for AggregateExprPlan
impl UnsafeUnpin for AggregateExprPlan
impl UnwindSafe for AggregateExprPlan
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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