pub struct TransformLimits {
pub max_rows: Option<usize>,
pub max_active_columns: Option<usize>,
pub max_col_pairs: Option<usize>,
pub max_vals_map_keys: Option<usize>,
}Expand description
Optional fail-fast caps for large or wide transforms (all None = no limits).
Fields§
§max_rows: Option<usize>§max_active_columns: Option<usize>§max_col_pairs: Option<usize>§max_vals_map_keys: Option<usize>Trait Implementations§
Source§impl Clone for TransformLimits
impl Clone for TransformLimits
Source§fn clone(&self) -> TransformLimits
fn clone(&self) -> TransformLimits
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 moreSource§impl Debug for TransformLimits
impl Debug for TransformLimits
Source§impl Default for TransformLimits
impl Default for TransformLimits
Source§fn default() -> TransformLimits
fn default() -> TransformLimits
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransformLimits
impl PartialEq for TransformLimits
Source§fn eq(&self, other: &TransformLimits) -> bool
fn eq(&self, other: &TransformLimits) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TransformLimits
impl StructuralPartialEq for TransformLimits
Auto Trait Implementations§
impl Freeze for TransformLimits
impl RefUnwindSafe for TransformLimits
impl Send for TransformLimits
impl Sync for TransformLimits
impl Unpin for TransformLimits
impl UnsafeUnpin for TransformLimits
impl UnwindSafe for TransformLimits
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.