pub struct Split {
pub header: FileHeader,
pub chunks: Vec<SplitChunk>,
}Expand description
A definition of a split sparse image; When writing out or downloading to a device the (file) header should be written first followed by each chunk
Fields§
§header: FileHeaderGlobal file header
chunks: Vec<SplitChunk>List of data chunks
Implementations§
Trait Implementations§
impl Eq for Split
impl StructuralPartialEq for Split
Auto Trait Implementations§
impl Freeze for Split
impl RefUnwindSafe for Split
impl Send for Split
impl Sync for Split
impl Unpin for Split
impl UnwindSafe for Split
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