pub enum StatValue {
Int64(i64),
Float64(f64),
Utf8(String),
Binary(Vec<u8>),
}Expand description
A typed min/max statistic value.
Variants§
Int64(i64)
Float64(f64)
Utf8(String)
Binary(Vec<u8>)
Raw bytes — used for GEOMETRY stats (WKB; the extension reinterprets the BLOB as the column’s GEOMETRY type).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StatValue
impl RefUnwindSafe for StatValue
impl Send for StatValue
impl Sync for StatValue
impl Unpin for StatValue
impl UnsafeUnpin for StatValue
impl UnwindSafe for StatValue
Blanket Implementations§
impl<T> Allocation for T
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