Struct gltf_json::buffer::Buffer
[−]
pub struct Buffer {
pub byte_length: u32,
pub uri: Option<String>,
pub extensions: Buffer,
pub extras: Extras,
}A buffer points to binary data representing geometry, animations, or skins.
Fields
byte_length: u32
The length of the buffer in bytes.
uri: Option<String>
The uri of the buffer. Relative paths are relative to the .gltf file. Instead of referencing an external file, the uri can also be a data-uri.
extensions: Buffer
Extension specific data.
extras: Extras
Optional application specific data.
Trait Implementations
impl Clone for Buffer
fn clone(&self) -> Buffer
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for Buffer
impl Validate for Buffer
fn validate_minimally<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error),
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error),
Validates only the invariants required for the library to function safely.
fn validate_completely<P, R>(&self, _root: &Root, _path: P, _report: &mut R) where
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error),
P: Fn() -> Path,
R: FnMut(&Fn() -> Path, Error),
Validates the data against the glTF 2.0 specification.