pub struct DiskWriterConfig {
pub start_sector: u64,
pub total_bytes: u64,
pub sector_size: u32,
}Expand description
Disk writer configuration.
Fields§
§start_sector: u64Starting sector for ISO data.
total_bytes: u64Total size to write in bytes (0 = unknown, stream until done).
sector_size: u32Sector size (typically 512).
Trait Implementations§
Source§impl Clone for DiskWriterConfig
impl Clone for DiskWriterConfig
Source§fn clone(&self) -> DiskWriterConfig
fn clone(&self) -> DiskWriterConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiskWriterConfig
impl Debug for DiskWriterConfig
Source§impl Default for DiskWriterConfig
impl Default for DiskWriterConfig
impl Copy for DiskWriterConfig
Auto Trait Implementations§
impl Freeze for DiskWriterConfig
impl RefUnwindSafe for DiskWriterConfig
impl Send for DiskWriterConfig
impl Sync for DiskWriterConfig
impl Unpin for DiskWriterConfig
impl UnwindSafe for DiskWriterConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more