[][src]Struct gltf_json::Buffer

pub struct Buffer {
    pub byte_length: u32,
    pub uri: Option<String>,
    pub extensions: Option<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: Option<Buffer>

Extension specific data.

extras: Extras

Optional application specific data.

Trait Implementations

impl<'a> Get<Buffer> for Root[src]

impl Validate for Buffer[src]

impl Clone for Buffer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Buffer[src]

impl Serialize for Buffer[src]

impl<'de> Deserialize<'de> for Buffer[src]

Auto Trait Implementations

impl Send for Buffer

impl Sync for Buffer

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]