You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let reader = ReaderBuilder::new(schema).with_struct_mode(StructMode::ListOnly).with_strict_mode(false)// This has no effect.build();let writer = WriterBuilder::new().with_struct_mode(StructMode::ListOnly).with_explicit_nulls(false)// This has no effect.build()
See if we can utilize Rust's type system to enforce these constraints (e.g. type-state builder pattern). Would likely require a breaking API change.
The text was updated successfully, but these errors were encountered:
#6643 introduced new options which affect existing options in the builders.
Examples:
See if we can utilize Rust's type system to enforce these constraints (e.g. type-state builder pattern). Would likely require a breaking API change.
The text was updated successfully, but these errors were encountered: