(rdr: &mut R, bag: Bag)
| 492 | pub const MAX_MARSHAL_STACK_DEPTH: usize = 2000; |
| 493 | |
| 494 | pub fn deserialize_value<R: Read, Bag: MarshalBag>(rdr: &mut R, bag: Bag) -> Result<Bag::Value> { |
| 495 | let mut refs: Vec<Option<Bag::Value>> = Vec::new(); |
| 496 | deserialize_value_depth(rdr, bag, MAX_MARSHAL_STACK_DEPTH, &mut refs) |
| 497 | } |
| 498 | |
| 499 | fn deserialize_value_depth<R: Read, Bag: MarshalBag>( |
| 500 | rdr: &mut R, |
no test coverage detected