pub enum AggStrategy {
AGG_PLAIN = 0,
AGG_SORTED = 1,
AGG_HASHED = 2,
AGG_MIXED = 3,
}
Variants§
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<'de> Deserialize<'de> for AggStrategy
impl<'de> Deserialize<'de> for AggStrategy
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
Source§impl PartialEq for AggStrategy
impl PartialEq 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