pub trait GptHeaderWriteExt {
// Required methods
fn write_to<W: Write>(&self, writer: &mut W) -> Result<()>;
fn write_to_lba<W: Write + Seek>(
&self,
writer: &mut W,
lba: u64,
block_size: u32,
) -> Result<()>;
}Available on crate feature
write only.Expand description
Extension trait for writing GptHeader to I/O sinks.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl GptHeaderWriteExt for GptHeader
Available on crate feature
sync only.