[][src]Struct gltf::Gltf

pub struct Gltf {
    pub document: Document,
    pub blob: Option<Vec<u8>>,
}

glTF JSON wrapper plus binary payload.

Fields

document: Document

The glTF JSON wrapper.

blob: Option<Vec<u8>>

The glTF binary payload in the case of binary glTF.

Methods

impl Gltf[src]

pub fn open<P>(path: P) -> Result<Self> where
    P: AsRef<Path>, 
[src]

Convenience function that loads glTF from the file system.

pub fn from_reader_without_validation<R>(reader: R) -> Result<Self> where
    R: Read + Seek
[src]

Loads glTF from a reader without performing validation checks.

pub fn from_reader<R>(reader: R) -> Result<Self> where
    R: Read + Seek
[src]

Loads glTF from a reader.

pub fn from_slice_without_validation(slice: &[u8]) -> Result<Self>[src]

Loads glTF from a slice of bytes without performing validation checks.

pub fn from_slice(slice: &[u8]) -> Result<Self>[src]

Loads glTF from a slice of bytes.

Methods from Deref<Target = Document>

pub fn accessors(&self) -> Accessors[src]

Returns an Iterator that visits the accessors of the glTF asset.

pub fn animations(&self) -> Animations[src]

Returns an Iterator that visits the animations of the glTF asset.

pub fn buffers(&self) -> Buffers[src]

Returns an Iterator that visits the pre-loaded buffers of the glTF asset.

pub fn cameras(&self) -> Cameras[src]

Returns an Iterator that visits the cameras of the glTF asset.

pub fn default_scene(&self) -> Option<Scene>[src]

Returns the default scene, if provided.

pub fn extensions_used(&self) -> ExtensionsUsed[src]

Returns the extensions referenced in this .document file.

pub fn extensions_required(&self) -> ExtensionsRequired[src]

Returns the extensions required to load and render this asset.

pub fn images(&self) -> Images[src]

Returns an Iterator that visits the pre-loaded images of the glTF asset.

pub fn lights(&self) -> Option<Lights>[src]

This is supported on feature="KHR_lights_punctual" only.

Returns an Iterator that visits the lights of the glTF asset as defined by the KHR_lights_punctual extension.

pub fn materials(&self) -> Materials[src]

Returns an Iterator that visits the materials of the glTF asset.

pub fn meshes(&self) -> Meshes[src]

Returns an Iterator that visits the meshes of the glTF asset.

pub fn nodes(&self) -> Nodes[src]

Returns an Iterator that visits the nodes of the glTF asset.

pub fn samplers(&self) -> Samplers[src]

Returns an Iterator that visits the samplers of the glTF asset.

pub fn scenes(&self) -> Scenes[src]

Returns an Iterator that visits the scenes of the glTF asset.

pub fn skins(&self) -> Skins[src]

Returns an Iterator that visits the skins of the glTF asset.

pub fn textures(&self) -> Textures[src]

Returns an Iterator that visits the textures of the glTF asset.

pub fn views(&self) -> Views[src]

Returns an Iterator that visits the pre-loaded buffer views of the glTF asset.

Trait Implementations

impl Clone for Gltf[src]

impl Debug for Gltf[src]

impl Deref for Gltf[src]

type Target = Document

The resulting type after dereferencing.

impl DerefMut for Gltf[src]

Auto Trait Implementations

impl RefUnwindSafe for Gltf

impl Send for Gltf

impl Sync for Gltf

impl Unpin for Gltf

impl UnwindSafe for Gltf

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> 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, 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.