pub enum Processor {
Dec,
Intel,
SgiMips,
}Expand description
Processor type enum for determining endianess of the bytes during parsing and writing. Older C3D files may be stored in Dec or SgiMips format. Most modern C3D files are stored in Intel format. A parser that supports all three formats is required to read all C3D files.
c3dio supports reading and writing all three formats.
Variants§
Dec
Dec (Digital Equipment Corporation) is the default format for data created on a DEC computer. Traditionally, this data was produced on a VAX or RSX-11M operating system.
Intel
Intel is the default format for data created on an Intel-based computer running Windows or Linux.
SgiMips
SgiMips (Silicon Graphics MIPS) is the default format for data created on a Silicon Graphics RISC-based computer. These systems are not in common use today.
Trait Implementations§
impl Copy for Processor
impl StructuralPartialEq for Processor
Auto Trait Implementations§
impl Freeze for Processor
impl RefUnwindSafe for Processor
impl Send for Processor
impl Sync for Processor
impl Unpin for Processor
impl UnwindSafe for Processor
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