pub enum CompressedIndexWidth {
Width16,
Width32,
}Expand description
Triangle index width used by a Bunny compressed mesh payload.
Variants§
Width16
Three little-endian u16 values per triangle.
Width32
Three little-endian u32 values per triangle.
Trait Implementations§
Source§impl Clone for CompressedIndexWidth
impl Clone for CompressedIndexWidth
Source§fn clone(&self) -> CompressedIndexWidth
fn clone(&self) -> CompressedIndexWidth
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 moreimpl Copy for CompressedIndexWidth
Source§impl Debug for CompressedIndexWidth
impl Debug for CompressedIndexWidth
impl Eq for CompressedIndexWidth
Source§impl PartialEq for CompressedIndexWidth
impl PartialEq for CompressedIndexWidth
impl StructuralPartialEq for CompressedIndexWidth
Auto Trait Implementations§
impl Freeze for CompressedIndexWidth
impl RefUnwindSafe for CompressedIndexWidth
impl Send for CompressedIndexWidth
impl Sync for CompressedIndexWidth
impl Unpin for CompressedIndexWidth
impl UnsafeUnpin for CompressedIndexWidth
impl UnwindSafe for CompressedIndexWidth
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