pub struct ShapeWarning {
pub column: String,
pub stored_max_bytes: u64,
pub current_max_bytes: u64,
pub growth_factor: f64,
}Expand description
One column whose observed max byte length grew beyond the configured threshold.
Fields§
§column: String§stored_max_bytes: u64§current_max_bytes: u64§growth_factor: f64current_max_bytes / stored_max_bytes — always > warn_factor.
Auto Trait Implementations§
impl Freeze for ShapeWarning
impl RefUnwindSafe for ShapeWarning
impl Send for ShapeWarning
impl Sync for ShapeWarning
impl Unpin for ShapeWarning
impl UnsafeUnpin for ShapeWarning
impl UnwindSafe for ShapeWarning
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