pub struct DecodedAccessor { /* private fields */ }Available on crate features
gltf-reader or gltf-writer only.Expand description
One glTF accessor decoded to a tight, row-major byte block plus its layout.
This is the reader-agnostic unit the geometry decoder consumes: an
AccessorSource produces these, and decode_geometry turns them into a
Mesh. It carries the original component type / normalized flag, so the
output accessors (which the compressor preserves) keep matching layout.
Implementations§
Auto Trait Implementations§
impl Freeze for DecodedAccessor
impl RefUnwindSafe for DecodedAccessor
impl Send for DecodedAccessor
impl Sync for DecodedAccessor
impl Unpin for DecodedAccessor
impl UnsafeUnpin for DecodedAccessor
impl UnwindSafe for DecodedAccessor
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