pub enum PlyFormat {
Ascii,
BinaryLittleEndian,
BinaryBigEndian,
}Expand description
PLY file format encoding.
Determines how data is stored in the PLY file - as text or binary with specific byte ordering.
Variants§
Ascii
Plain text format
BinaryLittleEndian
Binary format with little-endian byte order
BinaryBigEndian
Binary format with big-endian byte order
Trait Implementations§
impl Copy for PlyFormat
impl StructuralPartialEq for PlyFormat
Auto Trait Implementations§
impl Freeze for PlyFormat
impl RefUnwindSafe for PlyFormat
impl Send for PlyFormat
impl Sync for PlyFormat
impl Unpin for PlyFormat
impl UnwindSafe for PlyFormat
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