1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
/// Contains `Accessor` and other related data structures.
pub mod accessor;
/// Contains `Animation` and other related data structures.
pub mod animation;
/// Contains `Asset` metadata.
pub mod asset;
/// Contains `Buffer`, `View`, and other related data structures.
pub mod buffer;
/// Contains `Camera` and other related data structures.
pub mod camera;
/// Contains extension specific data structures and the names of all
/// 2.0 extensions supported by the library.
pub mod extensions;
/// Contains `Extras`.
pub mod extras;
/// Contains `Image` and other related data structures.
pub mod image;
/// Contains `Material` and other related data structures.
pub mod material;
/// Contains `Mesh` and other related data structures.
pub mod mesh;
/// Contains `Path`.
pub mod path;
/// Contains `Root`.
pub mod root;
/// Contains `Scene`, `Node`, and other related data structures.
pub mod scene;
/// Contains `Skin` and other related data structures.
pub mod skin;
/// Contains `Texture`, `Sampler`, and other related data structures.
pub mod texture;
/// Contains functions that validate glTF JSON data against the specification.
pub mod validation;
#[doc(inline)]
pub use accessor::Accessor;
#[doc(inline)]
pub use animation::Animation;
#[doc(inline)]
pub use asset::Asset;
#[doc(inline)]
pub use buffer::Buffer;
#[doc(inline)]
pub use camera::Camera;
#[doc(inline)]
pub use image::Image;
#[doc(inline)]
pub use material::Material;
#[doc(inline)]
pub use mesh::Mesh;
#[doc(inline)]
pub use scene::Node;
#[doc(inline)]
pub use scene::Scene;
#[doc(inline)]
pub use skin::Skin;
#[doc(inline)]
pub use texture::Texture;
#[doc(inline)]
pub use self::extras::Extras;
#[doc(inline)]
pub use self::path::Path;
#[doc(inline)]
pub use self::root::Index;
#[doc(inline)]
pub use self::root::Root;
#[doc(inline)]
pub use serde_json::Error;
#[doc(inline)]
pub use serde_json::Value;
/// Re-exports of `serde_json` deserialization functions.
///
/// This module re-exports the generic serde deserialization functions
/// so that one can deserialize data structures other than `Root` without
/// being bound to a specific version of `serde_json`.
pub mod deserialize {
pub use serde_json::{from_reader, from_slice, from_str, from_value};
}
/// Re-exports of `serde_json` serialization functions.
///
/// This module re-exports the generic serde serialization functions
/// so that one can serialize data structures other than `Root` without
/// being bound to a specific version of `serde_json`.
pub mod serialize {
pub use serde_json::{
to_string, to_string_pretty, to_value, to_vec, to_vec_pretty, to_writer, to_writer_pretty,
};
}