pub enum TooLargeKind {
Rows,
Bytes,
}Expand description
Which axis an auto-follow size guard tripped on.
Variants§
Rows
The row-count ceiling (max_auto_rows) was exceeded.
Bytes
The estimated-byte ceiling (max_auto_bytes) was exceeded.
Trait Implementations§
Source§impl Clone for TooLargeKind
impl Clone for TooLargeKind
Source§fn clone(&self) -> TooLargeKind
fn clone(&self) -> TooLargeKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TooLargeKind
Source§impl Debug for TooLargeKind
impl Debug for TooLargeKind
impl Eq for TooLargeKind
Source§impl PartialEq for TooLargeKind
impl PartialEq for TooLargeKind
Source§fn eq(&self, other: &TooLargeKind) -> bool
fn eq(&self, other: &TooLargeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TooLargeKind
Auto Trait Implementations§
impl Freeze for TooLargeKind
impl RefUnwindSafe for TooLargeKind
impl Send for TooLargeKind
impl Sync for TooLargeKind
impl Unpin for TooLargeKind
impl UnsafeUnpin for TooLargeKind
impl UnwindSafe for TooLargeKind
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