pub struct ResourceStore {
pub buffers: Vec<Vec<u8>>,
}Expand description
Resolved binary resources indexed by glTF buffer index.
Fields§
§buffers: Vec<Vec<u8>>Resolved bytes indexed by glTF buffers[] position.
Trait Implementations§
Source§impl Clone for ResourceStore
impl Clone for ResourceStore
Source§fn clone(&self) -> ResourceStore
fn clone(&self) -> ResourceStore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResourceStore
impl Debug for ResourceStore
Source§impl Default for ResourceStore
impl Default for ResourceStore
Source§fn default() -> ResourceStore
fn default() -> ResourceStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResourceStore
impl RefUnwindSafe for ResourceStore
impl Send for ResourceStore
impl Sync for ResourceStore
impl Unpin for ResourceStore
impl UnsafeUnpin for ResourceStore
impl UnwindSafe for ResourceStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more