pub enum Statistic {
Boolean(BooleanStatistics),
Int32(IntegerStatistics),
Int64(LongStatistics),
FLOAT(FloatStatistics),
DOUBLE(DoubleStatistics),
TEXT(BinaryStatistics),
}
Variants§
Boolean(BooleanStatistics)
Int32(IntegerStatistics)
Int64(LongStatistics)
FLOAT(FloatStatistics)
DOUBLE(DoubleStatistics)
TEXT(BinaryStatistics)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Statistic
impl RefUnwindSafe for Statistic
impl Send for Statistic
impl Sync for Statistic
impl Unpin for Statistic
impl UnwindSafe for Statistic
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