Fully deserializes the file content into memory (Eager). This is the equivalent of `Parcode::load()`, but on an already open file.
(&self)
| 721 | /// |
| 722 | /// This is the equivalent of `Parcode::load()`, but on an already open file. |
| 723 | pub fn load<T: ParcodeNative>(&self) -> Result<T> { |
| 724 | let root = self.root_node()?; |
| 725 | T::from_node(&root) |
| 726 | } |
| 727 | |
| 728 | /// Returns a Lazy Mirror of the root object. |
| 729 | /// |