Struct gltf::binary::Header[][src]

#[repr(C)]
pub struct Header { pub magic: [u8; 4], pub version: u32, pub length: u32, }

The header section of a .glb file.

Fields

Must be b"glTF".

Must be 2.

Must match the length of the parent .glb file.

Trait Implementations

impl Copy for Header
[src]

impl Clone for Header
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Header
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Header

impl Sync for Header