jorgecarleitao / arrow2

Transmute-free Rust library to work with the Arrow format
Apache License 2.0
1.07k stars 223 forks source link

TryPush for MutableFixedSizeBinaryArray #1478

Open andy-thomason opened 1 year ago

andy-thomason commented 1 year ago

MutableFixedSizeBinaryArray has a method called try_push but does not implement the TryPush trait.

This makes it impossible to use it as a child type of list and dictionary arrays as their implementation of TryPush depends on the child implementation.

Is there any reason why we should not move the method into the trait?