pub struct DebugValue {
pub header: Header,
pub index: i32,
pub array_id: i32,
pub name: String,
pub value_float: f32,
pub value_int: i32,
pub data: Vec<f32>,
pub type_: u8,
}Fields§
§header: Header§index: i32§array_id: i32§name: String§value_float: f32§value_int: i32§data: Vec<f32>§type_: u8Implementations§
Source§impl DebugValue
impl DebugValue
pub const TYPE_DEBUG: u8 = 0u8
pub const TYPE_DEBUG_VECT: u8 = 1u8
pub const TYPE_DEBUG_FLOAT_ARRAY: u8 = 2u8
pub const TYPE_NAMED_VALUE_FLOAT: u8 = 3u8
pub const TYPE_NAMED_VALUE_INT: u8 = 4u8
Trait Implementations§
Source§impl Clone for DebugValue
impl Clone for DebugValue
Source§fn clone(&self) -> DebugValue
fn clone(&self) -> DebugValue
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 DebugValue
impl Debug for DebugValue
Source§impl Default for DebugValue
impl Default for DebugValue
Source§impl<'de> Deserialize<'de> for DebugValue
impl<'de> Deserialize<'de> for DebugValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DebugValue
impl PartialEq for DebugValue
Source§impl Serialize for DebugValue
impl Serialize for DebugValue
impl Message for DebugValue
impl StructuralPartialEq for DebugValue
Auto Trait Implementations§
impl Freeze for DebugValue
impl RefUnwindSafe for DebugValue
impl Send for DebugValue
impl Sync for DebugValue
impl Unpin for DebugValue
impl UnwindSafe for DebugValue
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