pub enum TableSize {
Small,
Medium,
Large,
Huge,
}Expand description
Rough classification of table size based on estimated row count.
Variants§
Small
Fewer than 10,000 rows.
Medium
10,000 to 1,000,000 rows.
Large
1,000,000 to 100,000,000 rows.
Huge
More than 100,000,000 rows.
Trait Implementations§
impl Copy for TableSize
impl Eq for TableSize
impl StructuralPartialEq for TableSize
Auto Trait Implementations§
impl Freeze for TableSize
impl RefUnwindSafe for TableSize
impl Send for TableSize
impl Sync for TableSize
impl Unpin for TableSize
impl UnsafeUnpin for TableSize
impl UnwindSafe for TableSize
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.