[][src]Struct gltf_json::accessor::sparse::Indices

pub struct Indices {
    pub buffer_view: Index<View>,
    pub byte_offset: u32,
    pub component_type: Checked<IndexComponentType>,
    pub extensions: Option<Indices>,
    pub extras: Extras,
}

Indices of those attributes that deviate from their initialization value.

Fields

buffer_view: Index<View>

The parent buffer view containing the sparse indices.

The referenced buffer view must not have ARRAY_BUFFER nor ELEMENT_ARRAY_BUFFER as its target.

byte_offset: u32

The offset relative to the start of the parent BufferView in bytes.

component_type: Checked<IndexComponentType>

The data type of each index.

extensions: Option<Indices>

Extension specific data.

extras: Extras

Optional application specific data.

Trait Implementations

impl Clone for Indices[src]

impl Debug for Indices[src]

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

impl Serialize for Indices[src]

impl Validate for Indices[src]

Auto Trait Implementations

impl RefUnwindSafe for Indices

impl Send for Indices

impl Sync for Indices

impl Unpin for Indices

impl UnwindSafe for Indices

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.