Closed desaikd closed 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.
SharedPendingTypes
Rc<RefCell<PedningTypes>>
&mut PedningTypes
Reference: https://github.com/amzn/ion-schema-rust/pull/24#discussion_r710479435
Currently the
SharedPendingTypes
isRc<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