#[repr(C)]pub union RENDERDOC_AnnotationVectorValue {
pub boolean: [bool; 4],
pub int32: [i32; 4],
pub int64: [i64; 4],
pub uint32: [u32; 4],
pub uint64: [u64; 4],
pub float32: [f32; 4],
pub float64: [f64; 4],
}Fields§
§boolean: [bool; 4]§int32: [i32; 4]§int64: [i64; 4]§uint32: [u32; 4]§uint64: [u64; 4]§float32: [f32; 4]§float64: [f64; 4]Trait Implementations§
Source§impl Clone for RENDERDOC_AnnotationVectorValue
impl Clone for RENDERDOC_AnnotationVectorValue
Source§fn clone(&self) -> RENDERDOC_AnnotationVectorValue
fn clone(&self) -> RENDERDOC_AnnotationVectorValue
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 moreimpl Copy for RENDERDOC_AnnotationVectorValue
Auto Trait Implementations§
impl Freeze for RENDERDOC_AnnotationVectorValue
impl RefUnwindSafe for RENDERDOC_AnnotationVectorValue
impl Send for RENDERDOC_AnnotationVectorValue
impl Sync for RENDERDOC_AnnotationVectorValue
impl Unpin for RENDERDOC_AnnotationVectorValue
impl UnsafeUnpin for RENDERDOC_AnnotationVectorValue
impl UnwindSafe for RENDERDOC_AnnotationVectorValue
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