pub struct PathShape {
pub latitude: f64,
pub longitude: f64,
pub sequence_number: i32,
}Fields§
§latitude: f64Latitude of stop.
longitude: f64Longitude of stop.
sequence_number: i32Order of the point in the sequence of PathStop.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PathShape
impl<'de> Deserialize<'de> for PathShape
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
Auto Trait Implementations§
impl Freeze for PathShape
impl RefUnwindSafe for PathShape
impl Send for PathShape
impl Sync for PathShape
impl Unpin for PathShape
impl UnsafeUnpin for PathShape
impl UnwindSafe for PathShape
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