1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! # PGS Read Trait
//!
//! Defines traits for reading data from PGS files or buffers, with support for seeking.
use Read;
use crateResult;
/// A trait for seeking within a read/write context.
///
/// This trait provides methods for seeking to a specific position, querying the current position, getting the length
/// of the data, and checking if the data is non-empty.
/// A trait for reading data with seeking capabilities.
///
/// This trait combines `Read` from the standard library and `PgsSeek`, indicating that a type implementing this trait
/// can both read data and seek within it.