amazon-ion / ion-schema-rust

Rust implementation of Ion Schema
https://amazon-ion.github.io/ion-schema/sandbox
Apache License 2.0
13 stars 6 forks source link

Change `SharedPedningTypes` to be defined as `&mut PendingTypes` #28

Closed desaikd closed 3 years ago

desaikd commented 3 years ago

Currently the SharedPendingTypes is Rc<RefCell<PedningTypes>> which isn't really required. This can now be changed to a more appropriate type &mut PedningTypes.

Reference: https://github.com/amzn/ion-schema-rust/pull/24#discussion_r710479435