pub trait PgsRead: Read + PgsSeek { }Expand description
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.