pub enum ReflectFormat {
Show 13 variants
Undefined,
R32_UINT,
R32_SINT,
R32_SFLOAT,
R32G32_UINT,
R32G32_SINT,
R32G32_SFLOAT,
R32G32B32_UINT,
R32G32B32_SINT,
R32G32B32_SFLOAT,
R32G32B32A32_UINT,
R32G32B32A32_SINT,
R32G32B32A32_SFLOAT,
}
Variants§
Undefined
R32_UINT
R32_SINT
R32_SFLOAT
R32G32_UINT
R32G32_SINT
R32G32_SFLOAT
R32G32B32_UINT
R32G32B32_SINT
R32G32B32_SFLOAT
R32G32B32A32_UINT
R32G32B32A32_SINT
R32G32B32A32_SFLOAT
Trait Implementations§
Source§impl Clone for ReflectFormat
impl Clone for ReflectFormat
Source§fn clone(&self) -> ReflectFormat
fn clone(&self) -> ReflectFormat
Returns a copy 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 ReflectFormat
impl Debug for ReflectFormat
Source§impl Default for ReflectFormat
impl Default for ReflectFormat
Source§impl PartialEq for ReflectFormat
impl PartialEq for ReflectFormat
Source§impl Serialize for ReflectFormat
impl Serialize for ReflectFormat
impl Copy for ReflectFormat
impl StructuralPartialEq for ReflectFormat
Auto Trait Implementations§
impl Freeze for ReflectFormat
impl RefUnwindSafe for ReflectFormat
impl Send for ReflectFormat
impl Sync for ReflectFormat
impl Unpin for ReflectFormat
impl UnwindSafe for ReflectFormat
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