Builds a [`Fory`] instance with the current builder configuration.
(self)
| 360 | |
| 361 | /// Builds a [`Fory`] instance with the current builder configuration. |
| 362 | pub fn build(self) -> Fory { |
| 363 | let config = self.finish_config(); |
| 364 | Fory::from_config(config) |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | /// The main Fory serialization framework instance. |