pub struct PredictedPath {
pub path: Vec<Pose>,
pub time_step: Duration,
pub confidence: f32,
}Fields§
§path: Vec<Pose>§time_step: Duration§confidence: f32Trait Implementations§
Source§impl Clone for PredictedPath
impl Clone for PredictedPath
Source§fn clone(&self) -> PredictedPath
fn clone(&self) -> PredictedPath
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 PredictedPath
impl Debug for PredictedPath
Source§impl Default for PredictedPath
impl Default for PredictedPath
Source§impl<'de> Deserialize<'de> for PredictedPath
impl<'de> Deserialize<'de> for PredictedPath
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 PredictedPath
impl PartialEq for PredictedPath
Source§impl Serialize for PredictedPath
impl Serialize for PredictedPath
impl Message for PredictedPath
impl StructuralPartialEq for PredictedPath
Auto Trait Implementations§
impl Freeze for PredictedPath
impl RefUnwindSafe for PredictedPath
impl Send for PredictedPath
impl Sync for PredictedPath
impl Unpin for PredictedPath
impl UnwindSafe for PredictedPath
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