#[non_exhaustive]pub struct DebugUtilsMessengerCallbackLabel<'a> {
pub label_name: &'a str,
pub color: &'a [f32; 4],
}Expand description
The values of DebugUtilsLabel, as returned to a messenger callback.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.label_name: &'a strThe name of the label.
color: &'a [f32; 4]An RGBA color value that is associated with the label, with values in the range 0.0..=1.0.
Auto Trait Implementations§
impl<'a> Freeze for DebugUtilsMessengerCallbackLabel<'a>
impl<'a> RefUnwindSafe for DebugUtilsMessengerCallbackLabel<'a>
impl<'a> Send for DebugUtilsMessengerCallbackLabel<'a>
impl<'a> Sync for DebugUtilsMessengerCallbackLabel<'a>
impl<'a> Unpin for DebugUtilsMessengerCallbackLabel<'a>
impl<'a> UnwindSafe for DebugUtilsMessengerCallbackLabel<'a>
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