#[repr(i32)]pub enum AggStrategy {
Undefined = 0,
AggPlain = 1,
AggSorted = 2,
AggHashed = 3,
AggMixed = 4,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AggStrategy
impl Clone for AggStrategy
Source§fn clone(&self) -> AggStrategy
fn clone(&self) -> AggStrategy
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 AggStrategy
impl Debug for AggStrategy
Source§impl Default for AggStrategy
impl Default for AggStrategy
Source§fn default() -> AggStrategy
fn default() -> AggStrategy
Returns the “default value” for a type. Read more
Source§impl From<AggStrategy> for i32
impl From<AggStrategy> for i32
Source§fn from(value: AggStrategy) -> i32
fn from(value: AggStrategy) -> i32
Converts to this type from the input type.
Source§impl Hash for AggStrategy
impl Hash for AggStrategy
Source§impl Ord for AggStrategy
impl Ord for AggStrategy
Source§fn cmp(&self, other: &AggStrategy) -> Ordering
fn cmp(&self, other: &AggStrategy) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AggStrategy
impl PartialEq for AggStrategy
Source§impl PartialOrd for AggStrategy
impl PartialOrd for AggStrategy
impl Copy for AggStrategy
impl Eq for AggStrategy
impl StructuralPartialEq for AggStrategy
Auto Trait Implementations§
impl Freeze for AggStrategy
impl RefUnwindSafe for AggStrategy
impl Send for AggStrategy
impl Sync for AggStrategy
impl Unpin for AggStrategy
impl UnwindSafe for AggStrategy
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