#[repr(C)]pub enum ObjectMaterialSize {
Show 14 variants
Size32x32 = 10,
Size64x32 = 20,
Size64x64 = 30,
Size128x32 = 40,
Size128x64 = 50,
Size128x128 = 60,
Size256x32 = 70,
Size256x64 = 80,
Size256x128 = 90,
Size256x256 = 100,
Size512x64 = 110,
Size512x128 = 120,
Size512x256 = 130,
Size512x512 = 140,
}Expand description
Size of Object material
Variants§
Size32x32 = 10
Size64x32 = 20
Size64x64 = 30
Size128x32 = 40
Size128x64 = 50
Size128x128 = 60
Size256x32 = 70
Size256x64 = 80
Size256x128 = 90
Size256x256 = 100
Size512x64 = 110
Size512x128 = 120
Size512x256 = 130
Size512x512 = 140
Trait Implementations§
Source§impl Clone for ObjectMaterialSize
impl Clone for ObjectMaterialSize
Source§fn clone(&self) -> ObjectMaterialSize
fn clone(&self) -> ObjectMaterialSize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObjectMaterialSize
impl Debug for ObjectMaterialSize
Source§impl PartialEq for ObjectMaterialSize
impl PartialEq for ObjectMaterialSize
impl Copy for ObjectMaterialSize
impl StructuralPartialEq for ObjectMaterialSize
Auto Trait Implementations§
impl Freeze for ObjectMaterialSize
impl RefUnwindSafe for ObjectMaterialSize
impl Send for ObjectMaterialSize
impl Sync for ObjectMaterialSize
impl Unpin for ObjectMaterialSize
impl UnwindSafe for ObjectMaterialSize
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