pub trait FileReader:
Debug
+ Send
+ Sync
+ Read
+ Seek
+ 'static {
// Required method
fn byte_len(&self) -> Option<u64>;
}Expand description
Trait for files readers ensuring they implement the required traits
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".