[][src]Struct assembly::lvl::file::ChunkHeader

pub struct ChunkHeader {
    pub id: u32,
    pub version: ChunkVersion,
    pub size: u32,
    pub offset: u32,
}

The header for a single chunk

Fields

id: u32

The ID of this chunk

version: ChunkVersion

The version of this chunk

size: u32

The chunk size

offset: u32

The chunk data offset

Trait Implementations

impl Debug for ChunkHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]