#[non_exhaustive]pub struct EncodedPolyline {
pub points: String,
}Expand description
The encoded representation of a polyline. More information on polyline encoding can be found here: https://developers.google.com/maps/documentation/utilities/polylinealgorithm https://developers.google.com/maps/documentation/javascript/reference/geometry#encoding.
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.points: StringString representing encoded points of the polyline.
Implementations§
Trait Implementations§
Source§impl Clone for EncodedPolyline
impl Clone for EncodedPolyline
Source§fn clone(&self) -> EncodedPolyline
fn clone(&self) -> EncodedPolyline
Returns a copy 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 EncodedPolyline
impl Debug for EncodedPolyline
Source§impl Default for EncodedPolyline
impl Default for EncodedPolyline
Source§fn default() -> EncodedPolyline
fn default() -> EncodedPolyline
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncodedPolylinewhere
EncodedPolyline: Default,
impl<'de> Deserialize<'de> for EncodedPolylinewhere
EncodedPolyline: Default,
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 Message for EncodedPolyline
impl Message for EncodedPolyline
Source§impl PartialEq for EncodedPolyline
impl PartialEq for EncodedPolyline
Source§impl Serialize for EncodedPolyline
impl Serialize for EncodedPolyline
impl StructuralPartialEq for EncodedPolyline
Auto Trait Implementations§
impl Freeze for EncodedPolyline
impl RefUnwindSafe for EncodedPolyline
impl Send for EncodedPolyline
impl Sync for EncodedPolyline
impl Unpin for EncodedPolyline
impl UnwindSafe for EncodedPolyline
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