pub struct FbxReader<R: Read + Seek = BufReader<File>> { /* private fields */ }Available on crate feature
fbx-reader only.Expand description
FBX reader for binary FBX files.
Implementations§
Trait Implementations§
Source§impl ReadFromBytes for FbxReader<Cursor<Vec<u8>>>
impl ReadFromBytes for FbxReader<Cursor<Vec<u8>>>
Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Create a reader from a complete file payload.
Auto Trait Implementations§
impl<R> Freeze for FbxReader<R>where
R: Freeze,
impl<R> RefUnwindSafe for FbxReader<R>where
R: RefUnwindSafe,
impl<R> Send for FbxReader<R>where
R: Send,
impl<R> Sync for FbxReader<R>where
R: Sync,
impl<R> Unpin for FbxReader<R>where
R: Unpin,
impl<R> UnsafeUnpin for FbxReader<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for FbxReader<R>where
R: UnwindSafe,
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