pub struct MaxRowGroupBytes(/* private fields */);Expand description
Target maximum size of a Parquet row group in bytes.
Wraps a usize so the “must be greater than zero” constraint (arrow-rs
panics on a zero byte limit) is validated when the config is set, rather
than when the writer properties are built.
Implementations§
Trait Implementations§
Source§impl Clone for MaxRowGroupBytes
impl Clone for MaxRowGroupBytes
Source§fn clone(&self) -> MaxRowGroupBytes
fn clone(&self) -> MaxRowGroupBytes
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 MaxRowGroupBytes
Source§impl Debug for MaxRowGroupBytes
impl Debug for MaxRowGroupBytes
Source§impl Display for MaxRowGroupBytes
impl Display for MaxRowGroupBytes
impl Eq for MaxRowGroupBytes
Source§impl FromStr for MaxRowGroupBytes
impl FromStr for MaxRowGroupBytes
Source§impl PartialEq for MaxRowGroupBytes
impl PartialEq for MaxRowGroupBytes
impl StructuralPartialEq for MaxRowGroupBytes
Auto Trait Implementations§
impl Freeze for MaxRowGroupBytes
impl RefUnwindSafe for MaxRowGroupBytes
impl Send for MaxRowGroupBytes
impl Sync for MaxRowGroupBytes
impl Unpin for MaxRowGroupBytes
impl UnsafeUnpin for MaxRowGroupBytes
impl UnwindSafe for MaxRowGroupBytes
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
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.