Struct gltf::glb::Glb [] [src]

pub struct Glb<'a> {
    pub header: Header,
    pub json: &'a [u8],
    pub bin: Option<&'a [u8]>,
}

The contents of a .glb file.

Fields

The header section of the .glb file.

The JSON section of the .glb file.

The optional BIN section of the .glb file.

Methods

impl<'a> Glb<'a>
[src]

[src]

Splits loaded GLB into its three chunks.

  • Mandatory GLB header.
  • Mandatory JSON chunk.
  • Optional BIN chunk.

Trait Implementations

impl<'a> Clone for Glb<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Glb<'a>
[src]

[src]

Formats the value using the given formatter.