#[repr(C)]pub union RENDERDOC_AnnotationValue {
pub boolean: bool,
pub int32: i32,
pub int64: i64,
pub uint32: u32,
pub uint64: u64,
pub float32: f32,
pub float64: f64,
pub vector: RENDERDOC_AnnotationVectorValue,
pub string: *const c_char,
pub apiObject: *mut c_void,
}Fields§
§boolean: bool§int32: i32§int64: i64§uint32: u32§uint64: u64§float32: f32§float64: f64§vector: RENDERDOC_AnnotationVectorValue§string: *const c_char§apiObject: *mut c_voidTrait Implementations§
Source§impl Clone for RENDERDOC_AnnotationValue
impl Clone for RENDERDOC_AnnotationValue
Source§fn clone(&self) -> RENDERDOC_AnnotationValue
fn clone(&self) -> RENDERDOC_AnnotationValue
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 Default for RENDERDOC_AnnotationValue
impl Default for RENDERDOC_AnnotationValue
impl Copy for RENDERDOC_AnnotationValue
Auto Trait Implementations§
impl Freeze for RENDERDOC_AnnotationValue
impl RefUnwindSafe for RENDERDOC_AnnotationValue
impl !Send for RENDERDOC_AnnotationValue
impl !Sync for RENDERDOC_AnnotationValue
impl Unpin for RENDERDOC_AnnotationValue
impl UnsafeUnpin for RENDERDOC_AnnotationValue
impl UnwindSafe for RENDERDOC_AnnotationValue
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