pub struct PerceivedObject {
Show 31 fields pub object_id: u8, pub time_of_measurement: i16, pub confidence: ObjectConfidence, pub x_distance: i32, pub y_distance: i32, pub z_distance: Option<i32>, pub x_speed: i16, pub y_speed: i16, pub z_speed: Option<i16>, pub object_age: u16, pub object_ref_point: Option<u8>, pub x_acceleration: Option<i16>, pub y_acceleration: Option<i16>, pub z_acceleration: Option<i16>, pub roll_angle: Option<u16>, pub pitch_angle: Option<u16>, pub yaw_angle: Option<u16>, pub roll_rate: Option<i16>, pub pitch_rate: Option<i16>, pub yaw_rate: Option<i16>, pub roll_acceleration: Option<i16>, pub pitch_acceleration: Option<i16>, pub yaw_acceleration: Option<i16>, pub lower_triangular_correlation_matrix_columns: Vec<Vec<i8>>, pub planar_object_dimension_1: Option<u16>, pub planar_object_dimension_2: Option<u16>, pub vertical_object_dimension: Option<u16>, pub sensor_id_list: Vec<u8>, pub dynamic_status: Option<u8>, pub classification: Vec<ObjectClassification>, pub matched_position: Option<MatchedPosition>,
}

Fields

object_id: u8time_of_measurement: i16confidence: ObjectConfidencex_distance: i32y_distance: i32z_distance: Option<i32>x_speed: i16y_speed: i16z_speed: Option<i16>object_age: u16object_ref_point: Option<u8>x_acceleration: Option<i16>y_acceleration: Option<i16>z_acceleration: Option<i16>roll_angle: Option<u16>pitch_angle: Option<u16>yaw_angle: Option<u16>roll_rate: Option<i16>pitch_rate: Option<i16>yaw_rate: Option<i16>roll_acceleration: Option<i16>pitch_acceleration: Option<i16>yaw_acceleration: Option<i16>lower_triangular_correlation_matrix_columns: Vec<Vec<i8>>planar_object_dimension_1: Option<u16>planar_object_dimension_2: Option<u16>vertical_object_dimension: Option<u16>sensor_id_list: Vec<u8>dynamic_status: Option<u8>classification: Vec<ObjectClassification>matched_position: Option<MatchedPosition>

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.