Creates [`Self`] from a [`Read`] implementer. # Note Implementations of this function are expected to automatically detect a [`FileFormatSchema`] that the resulting [`Self`] is based on. The blanket implementation calls [`Self::from_reader_with_schema`] with [`None`] as `schema`.
(reader: impl Read)
| 84 | /// The blanket implementation calls [`Self::from_reader_with_schema`] with [`None`] as |
| 85 | /// `schema`. |
| 86 | fn from_reader(reader: impl Read) -> Result<Self, Self::Err> |
| 87 | where |
| 88 | Self: Sized, |
| 89 | { |
| 90 | Self::from_reader_with_schema(reader, None) |
| 91 | } |
| 92 | |
| 93 | /// Creates [`Self`] from a [`Read`] implementer, optionally validated by a `schema`. |
| 94 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected