Trait gltf::Find [] [src]

pub trait Find<T> {
    fn find(&self, id: &str) -> Option<&T>;
}

Helper trait for looking up top-level objects by their identifier

Required Methods

Attempts to find the object of type T with identifer id

Implementors