Enum substrait_validator::input::proto::substrait::AggregationPhase
source · [−]#[repr(i32)]
pub enum AggregationPhase {
Unspecified,
InitialToIntermediate,
IntermediateToIntermediate,
InitialToResult,
IntermediateToResult,
}Variants
Unspecified
InitialToIntermediate
IntermediateToIntermediate
InitialToResult
IntermediateToResult
Implementations
Trait Implementations
sourceimpl Clone for AggregationPhase
impl Clone for AggregationPhase
sourcefn clone(&self) -> AggregationPhase
fn clone(&self) -> AggregationPhase
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AggregationPhase
impl Debug for AggregationPhase
sourceimpl Default for AggregationPhase
impl Default for AggregationPhase
sourcefn default() -> AggregationPhase
fn default() -> AggregationPhase
Returns the “default value” for a type. Read more
sourceimpl From<AggregationPhase> for i32
impl From<AggregationPhase> for i32
sourcefn from(value: AggregationPhase) -> i32
fn from(value: AggregationPhase) -> i32
Converts to this type from the input type.
sourceimpl Hash for AggregationPhase
impl Hash for AggregationPhase
sourceimpl Ord for AggregationPhase
impl Ord for AggregationPhase
sourceimpl PartialEq<AggregationPhase> for AggregationPhase
impl PartialEq<AggregationPhase> for AggregationPhase
sourceimpl PartialOrd<AggregationPhase> for AggregationPhase
impl PartialOrd<AggregationPhase> for AggregationPhase
sourcefn partial_cmp(&self, other: &AggregationPhase) -> Option<Ordering>
fn partial_cmp(&self, other: &AggregationPhase) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl ProtoEnum for AggregationPhase
impl ProtoEnum for AggregationPhase
sourcefn proto_enum_type() -> &'static str
fn proto_enum_type() -> &'static str
Returns the protobuf type name for enums of this type.
sourcefn proto_enum_default_variant() -> &'static str
fn proto_enum_default_variant() -> &'static str
Returns the name of the default variant of an enum.
sourcefn proto_enum_variant(&self) -> &'static str
fn proto_enum_variant(&self) -> &'static str
Returns the name of the selected variant of an enum.
sourcefn proto_enum_from_i32(x: i32) -> Option<Self>
fn proto_enum_from_i32(x: i32) -> Option<Self>
Returns the enumeration entry corresponding to the given integer value, if any. Read more
impl Copy for AggregationPhase
impl Eq for AggregationPhase
impl StructuralEq for AggregationPhase
impl StructuralPartialEq for AggregationPhase
Auto Trait Implementations
impl RefUnwindSafe for AggregationPhase
impl Send for AggregationPhase
impl Sync for AggregationPhase
impl Unpin for AggregationPhase
impl UnwindSafe for AggregationPhase
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> InputNode for T where
T: ProtoPrimitive,
impl<T> InputNode for T where
T: ProtoPrimitive,
sourcefn type_to_node() -> Node
fn type_to_node() -> Node
Creates an empty output node for a protobuf datum of this type. Read more
sourcefn data_to_node(&self) -> Node
fn data_to_node(&self) -> Node
Creates an empty output node for a protobuf datum with this value.
sourcefn oneof_variant(&self) -> Option<&'static str>
fn oneof_variant(&self) -> Option<&'static str>
Returns the name of the selected variant of a oneof field, if this is a rust enum used to represent a oneof field. Read more
sourcefn parse_unknown(&self, _context: &mut Context<'_>) -> bool
fn parse_unknown(&self, _context: &mut Context<'_>) -> bool
Complete the subtrees of this datum in output that have not already been parsed using UnknownField nodes. Returns whether any such nodes were added. Read more
sourceimpl<T> ProtoPrimitive for T where
T: ProtoEnum,
impl<T> ProtoPrimitive for T where
T: ProtoEnum,
sourcefn proto_primitive_type() -> &'static str
fn proto_primitive_type() -> &'static str
Returns the protobuf type name for primitives of this type.
sourcefn proto_primitive_default() -> PrimitiveData
fn proto_primitive_default() -> PrimitiveData
Returns the protobuf-specified default value for this primitive data type. Read more
sourcefn proto_primitive_data(&self) -> PrimitiveData
fn proto_primitive_data(&self) -> PrimitiveData
Returns the actual value for this primitive data type as a ProtoPrimitiveData variant. Read more
sourcefn proto_primitive_is_default(&self) -> bool
fn proto_primitive_is_default(&self) -> bool
Returns whether this is the default value of the primitive.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more