pub struct ShapeThresholds {
pub markdown_table_min_cols: usize,
pub array_of_objects_min_items: usize,
pub array_of_objects_min_key_stability: f32,
pub flat_object_min_fields: usize,
}Fields§
§markdown_table_min_cols: usizeApply csv_from_md only if the markdown table has at least this many columns.
array_of_objects_min_items: usizeApply csv only if the array has at least this many objects.
array_of_objects_min_key_stability: f32Minimum mean key-stability across items (0.0–1.0) for csv encoding.
flat_object_min_fields: usizeApply kv only if the flat object has at least this many fields.
Trait Implementations§
Source§impl Clone for ShapeThresholds
impl Clone for ShapeThresholds
Source§fn clone(&self) -> ShapeThresholds
fn clone(&self) -> ShapeThresholds
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 ShapeThresholds
impl Debug for ShapeThresholds
Source§impl Default for ShapeThresholds
impl Default for ShapeThresholds
Source§impl<'de> Deserialize<'de> for ShapeThresholds
impl<'de> Deserialize<'de> for ShapeThresholds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ShapeThresholds
impl RefUnwindSafe for ShapeThresholds
impl Send for ShapeThresholds
impl Sync for ShapeThresholds
impl Unpin for ShapeThresholds
impl UnsafeUnpin for ShapeThresholds
impl UnwindSafe for ShapeThresholds
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