File tree Expand file tree Collapse file tree 3 files changed +640
-4
lines changed Expand file tree Collapse file tree 3 files changed +640
-4
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,12 @@ pub trait Length {
48
48
/// Generates [`Read`]ers to read chunks of a Parquet data source.
49
49
///
50
50
/// The Parquet reader uses [`ChunkReader`] to access Parquet data, allowing
51
- /// multiple decoders to read concurrently from different locations in the same file.
51
+ /// multiple decoders to read concurrently from different locations in the same
52
+ /// file.
52
53
///
53
- /// The trait provides:
54
- /// * random access ( via [`Self::get_bytes`])
55
- /// * sequential ( via [`Self::get_read`])
54
+ /// The trait functions both as a reader and a factory for readers.
55
+ /// * random access via [`Self::get_bytes`]
56
+ /// * sequential access via the reader returned via factory method [`Self::get_read`]
56
57
///
57
58
/// # Provided Implementations
58
59
/// * [`File`] for reading from local file system
You can’t perform that action at this time.
0 commit comments