pub struct TextLengths {
pub min_length: usize,
pub max_length: usize,
pub avg_length: f64,
}Expand description
Pre-computed text length stats from streaming/columnar engines.
Fields§
§min_length: usize§max_length: usize§avg_length: f64Auto Trait Implementations§
impl Freeze for TextLengths
impl RefUnwindSafe for TextLengths
impl Send for TextLengths
impl Sync for TextLengths
impl Unpin for TextLengths
impl UnsafeUnpin for TextLengths
impl UnwindSafe for TextLengths
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