Struct ChunkHeader

Source
pub struct ChunkHeader {
    pub chunk_type: ChunkType,
    pub chunk_size: u32,
    pub total_size: u32,
}
Expand description

Header of a chunk

Fields§

§chunk_type: ChunkType

The type of the chunk

§chunk_size: u32

Output size of the chunk in blocksize

§total_size: u32

Size of the chunk in the sparse image

Implementations§

Source§

impl ChunkHeader

Source

pub fn new_dontcare(blocks: u32) -> Self

Create a don’t care header for a given length in blocks

Source

pub fn new_raw(blocks: u32, block_size: u32) -> Self

Create a new raw header for a given amount in blocks for block_size

The actual data should follow this header

Source

pub fn new_fill(blocks: u32) -> Self

Create a new fill header for a given amount of blocks to be filled

The header should be followed by 4 bytes indicate the data to fill with

Source

pub fn from_bytes(bytes: &ChunkHeaderBytes) -> Result<ChunkHeader, ParseError>

Create new ChunkHeader from a raw header

Source

pub fn to_bytes(&self) -> ChunkHeaderBytes

Convert into a raw header

Source

pub fn out_size(&self, header: &FileHeader) -> usize

Resulting size of this chunk in the output

Source

pub fn data_size(&self) -> usize

Data bytes after the header

Trait Implementations§

Source§

impl Clone for ChunkHeader

Source§

fn clone(&self) -> ChunkHeader

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChunkHeader

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for ChunkHeader

Source§

fn eq(&self, other: &ChunkHeader) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for ChunkHeader

Source§

impl StructuralPartialEq for ChunkHeader

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.