pub trait MasterBootRecordReadExt: Sized {
// Required method
fn read_from<R: Read>(reader: &mut R) -> Result<Self>;
}Available on crate feature
read only.Expand description
Extension trait for reading MasterBootRecord from I/O sources.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl MasterBootRecordReadExt for MasterBootRecord
Available on crate feature
sync only.